/* EEG Brain State Visualizer - Dark Theme */

#eegContainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
}

.control-panel {
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.control-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.control-row label {
    min-width: 120px;
    font-size: 12px;
    color: #b0b0b0;
}

.control-row input[type="file"] {
    font-size: 11px;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
}

.control-row input[type="checkbox"] {
    margin-right: 5px;
    cursor: pointer;
}

.control-row input[type="range"] {
    flex: 1;
    min-width: 150px;
}

.control-row span {
    min-width: 60px;
    font-size: 12px;
    color: #b0b0b0;
    text-align: left;
}

.control-row select {
    flex: 1;
    min-width: 200px;
    padding: 5px;
    background-color: #3a3a3a;
    color: #e0e0e0;
    border: 1px solid #4a4a4a;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    cursor: pointer;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.btn {
    padding: 8px 16px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #357abd;
}

.btn:active {
    background-color: #2868a0;
}

.btn.active {
    background-color: #2ecc71;
}

.btn.active:hover {
    background-color: #27ae60;
}

.info-display {
    background-color: #2a2a2a;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 12px;
    color: #b0b0b0;
    text-align: center;
}

#fileInfo {
    min-width: 200px;
    max-width: none;
    word-break: break-all;
    overflow-wrap: break-word;
    text-align: left;
    white-space: normal;
}

.chart-container {
    background-color: #2a2a2a;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}

.metric-display {
    background-color: #2a2a2a;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    color: #2ecc71;
    text-align: center;
    font-weight: bold;
}

