body {
    background: #1a1a2e;
    color: white;
    font-family: system-ui, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    background: #16213e;
    border-bottom: 2px solid #27AE60;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
}

.nav a.active {
    background: #27AE60;
    border-radius: 4px;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: #27AE60;
    color: white;
}

.btn-danger {
    background: #e74c3c;
    color: white;
}

.card {
    background: #16213e;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #333;
}

.tab {
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #aaa;
}

.tab.active {
    border-bottom: 2px solid #27AE60;
    color: #27AE60;
}

.drop-zone {
    border: 2px dashed #555;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: #aaa;
}

.drop-zone.active {
    border-color: #27AE60;
    background: rgba(39, 174, 96, 0.1);
}

.segment {
    padding: 8px;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.segment:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #27AE60;
}

.segment-time {
    color: #27AE60;
    font-size: 12px;
    margin-right: 8px;
}

.segment-speaker {
    font-weight: bold;
    margin-right: 8px;
}

.segment-text {
    color: #ccc;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: #16213e;
    padding: 24px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: #aaa;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 8px;
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.table th {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading {
    color: #27AE60;
    text-align: center;
    padding: 20px;
}

.error {
    color: #e74c3c;
    text-align: center;
    padding: 20px;
}

.page-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.file-info {
    font-size: 12px;
    color: #aaa;
    margin-top: 8px;
}

.badge-uploaded {
    background: #555;
    color: white;
}

.badge-processing {
    background: #f39c12;
    color: white;
}

.badge-completed {
    background: #27AE60;
    color: white;
}

.badge-failed {
    background: #e74c3c;
    color: white;
}

.badge-extracting_audio {
    background: #f39c12;
    color: white;
}

.badge-transcribing {
    background: #f39c12;
    color: white;
}

.badge-diarizing {
    background: #f39c12;
    color: white;
}

.badge-generating_protocol {
    background: #f39c12;
    color: white;
}

.meeting-link, .meeting-link:visited, .meeting-link:hover, .meeting-link:active {
    color: white;
    text-decoration: none;
}
