/* #enrollment0, #enrollment3, #enrollment6, #enrollment9{
    background-color: rgb(196, 204, 243);
}

#enrollment1, #enrollment4, #enrollment7{
    background-color: rgb(180, 230, 188);
}

#enrollment2, #enrollment5, #enrollment8{
    background-color: rgb(245, 183, 183);
} */




#window-slider{
    max-width: 300px;
}
   

.enrollment-name-container {
    position: relative;
    width: fit-content;
    margin: 0 auto 15px auto;
    padding: 0.2em 0.8em;
    background-color: #000000;
    border-radius: 50vh;
    border: 2px solid #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.enrollment-name-container::before,
.enrollment-name-container::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: min(300px, 22vw);
    pointer-events: none;
}

/* Left side: fades from transparent at outer edge to bright near input */
.enrollment-name-container::before {
    right: calc(100% + 6px);
    background: linear-gradient(to right, rgba(0, 229, 255, 0) 0%, rgba(0, 229, 255, 0.2) 30%, rgba(0, 229, 255, 0.45) 65%, rgba(0, 229, 255, 0.75) 85%, #00e5ff 100%);
}

/* Right side: fades from bright near input to transparent at outer edge */
.enrollment-name-container::after {
    left: calc(100% + 6px);
    background: linear-gradient(to right, #00e5ff 0%, rgba(0, 229, 255, 0.75) 15%, rgba(0, 229, 255, 0.45) 35%, rgba(0, 229, 255, 0.2) 70%, rgba(0, 229, 255, 0) 100%);
}

.section-card .enrollment-name-container::before,
.section-card .enrollment-name-container::after {
    display: none; /* No side lines needed inside a section card */
}

.enrollment-name {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    text-align: center;
    color: #00e5ff !important; /* Neon cyan matching headings */
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700;
    font-size: clamp(16px, 3vw, 24px); /* Same size as section-subtitle */
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-text-stroke: 0.05em #000000;
    text-shadow: 0 0 0.1em #00e5ff, 0 0 0.2em #00e5ff;
    padding: 0 !important;
    width: clamp(150px, 20vw, 250px);
    margin: 0;
}

.enrollment-disabled-label{
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 13px; /* Slightly smaller for better hierarchy */
    letter-spacing: 0.5px;
    color: rgba(0, 229, 255, 0.45); /* Soft, translucent cyan by default (when speaker is active) */
    text-shadow: 0 0 4px rgba(0, 229, 255, 0.15);
    cursor: pointer;
    transition: color 0.25s ease, text-shadow 0.25s ease;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle;
}

.enrollment-disabled-label:hover {
    color: rgba(0, 229, 255, 0.8);
    text-shadow: 0 0 6px rgba(0, 229, 255, 0.3);
}

/* When checked (SPEAKER IS DISABLED), color switches to a striking neon pink/crimson to show disabled status */
.enrollment-disabled-checkbox:checked + .enrollment-disabled-label {
    color: #ff33bb;
    text-shadow: 0 0 8px rgba(255, 51, 187, 0.6);
}

.enrollment-disabled-checkbox {
    margin-top: 2px; 
    margin-right: 7px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background-color: rgba(8, 9, 15, 0.85);
    border: 1.5px solid rgba(0, 229, 255, 0.4);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.enrollment-disabled-checkbox:focus {
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
    border-color: #00e5ff;
}

.enrollment-disabled-checkbox:checked {
    background-color: #ff33bb;
    border-color: #ff33bb;
}

.input-buttons{
    margin-top: 20px;
}

/* Hide all buttons except the record button for the Identification Block (idIndex = 8) */
#audio-controls-row8 #import-button8,
#audio-controls-row8 #download-button8,
#audio-controls-row8 #play-button8,
#audio-controls-row8 #stop-button8 {
    display: none !important;
}

#audio-controls-row8 > div:has(#import-button8),
#audio-controls-row8 > div:has(#download-button8),
#audio-controls-row8 > div:has(#play-button8),
#audio-controls-row8 > div:has(#stop-button8) {
    display: none !important;
}

/* Styled container for the Score Plot (real-time graph) */
#score-plot {
    width: 100%;
    max-width: 1000px;
    margin: 25px auto 0 auto;
    border: 2px solid rgba(0, 229, 255, 0.35); /* Neon cyan glass border */
    border-radius: 12px;
    
    /* Neon cyan glassmorphism style matching waveform/frequency visualizers */
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(0, 229, 255, 0.02) 100%), rgba(8, 9, 15, 0.65) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    
    box-shadow: inset 0 0 15px rgba(0, 229, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.5); /* Neon cyan inner glow & shadow depth */
    overflow: hidden;
}

#score-plot canvas {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Neon separator line between IDENTIFY and ANALYSIS WINDOW */
#identification-block .fancy-line {
    position: relative;
    height: 2px;
    margin: 20px auto;
    max-width: 100%;
    border: none;
    background: transparent;
}

#identification-block .fancy-line::before,
#identification-block .fancy-line::after {
    content: '';
    position: absolute;
    top: 0;
    height: 2px;
    width: 100vw;
}

/* Left half: very gradual fade from semi-translucent cyan at edge to bright near center */
#identification-block .fancy-line::before {
    right: 50%;
    background: linear-gradient(to right, rgba(0, 229, 255, 0.15) 0%, rgba(0, 229, 255, 0.25) 30%, rgba(0, 229, 255, 0.4) 60%, rgba(0, 229, 255, 0.65) 85%, #00e5ff 100%);
}

/* Right half: very gradual fade from bright near center to semi-translucent cyan at edge */
#identification-block .fancy-line::after {
    left: 50%;
    background: linear-gradient(to right, #00e5ff 0%, rgba(0, 229, 255, 0.65) 15%, rgba(0, 229, 255, 0.4) 40%, rgba(0, 229, 255, 0.25) 70%, rgba(0, 229, 255, 0.15) 100%);
}

/* Framed box for ANALYSIS WINDOW component */
.analysis-window-box {
    background: rgba(8, 9, 15, 0.85);
    border: 2px solid rgba(0, 229, 255, 0.35);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 15px auto 0 auto;
    max-width: 500px;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.1), inset 0 0 8px rgba(0, 0, 0, 0.4);
}

.analysis-window-label {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(12px, 2.5vw, 22px);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00e5ff;
    -webkit-text-stroke: 0.05em #000000;
    text-shadow: 0 0 0.1em #00e5ff, 0 0 0.2em #00e5ff;
    margin-bottom: 15px;
}

/* Monospace slider value display matching the recording timer */
#window-slider-value {
    margin: 15px auto 5px auto;
    font-family: 'Rubik Mono One', monospace !important;
    font-weight: 400;
    font-size: clamp(12px, 1.6vw, 18px);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ff33bb !important; /* Premium neon pink matching recording timer */
    -webkit-text-stroke: 0.05em #000000;
    text-shadow: 0 0 8px rgba(255, 51, 187, 0.4);
    display: block;
    width: clamp(160px, 22vw, 200px);
    text-align: center;
    padding: 0.4em 0;
    border-radius: 50vh;
    background-color: #000000;
    border: 2px solid #ff33bb;
    visibility: visible !important;
}


