body {
    min-height: 100vh;
}

.hide {
    display: none !important;
}

.transcript p {margin-bottom: .33rem;}
#working h2 {margin-top: 5rem;}
#audioPlayer {width: 30rem; margin-left: 3rem;}
#progressCircle {margin: 0px auto; margin-top: 5px;}

.mtt {margin-top: 5.5rem;}

.drop-zone, .welcome-zone, .working-zone {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.drop-zone.drag-over {
    background-color: #e7f3ff;
    border: 2px dashed #0d6efd;
}

.drop-message {
    text-align: center;
    color: #6c757d;
    pointer-events: none;
}

.drop-zone.drag-over .drop-message {
    color: #0d6efd;
}

.google-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #4285f4;
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
.google-btn:hover {
    background: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
}
.google-btn:active {
    transform: translateY(0);
}
.google-btn img {
    width: 24px;
    height: 24px;
}


/* Toast */
.xtoast-body, .timer {display: none;}
.xtoast-body {display: none;}
.toast-header {
    color: white;
    border-bottom-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
    border-bottom-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-success {background-color: #198754; color: #fff;}
.toast-danger {background-color: #dc3545; color: #fff;}
.toast-warning {background-color: #ffc107; color: #000;}
.toast-info {background-color: #0dcaf0; color: #000;}

.bi-binoculars {font-size: 1.7rem; color: green; cursor: pointer;}
.bi-trash {margin-left: 1rem; font-size: 1.7rem; color: maroon; cursor: pointer;}
.add-to-drive {margin-left: 1rem; font-size: 1.9rem; color: green; cursor: pointer; position: relative; top: 0.3rem;}

.folder-item {
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s;
}
.folder-item:hover {
    background: #f8f9fa;
}
.folder-item.selected {
    background: #e7f3ff;
    border: 2px solid #0d6efd;
}
.breadcrumb-item {
    cursor: pointer;
}
.breadcrumb-item:hover {
    text-decoration: underline;
}
.folder-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
}
.empty-state {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}
