/* Antispoof - Neon theme matching other pages */

/* Main title extra bottom spacing */
#antispoof-title {
    margin-bottom: 20px;
}

/* Gauge area */
#gauge-div {
    margin: 40px auto;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
}

/* Waveform container relative positioning & height override for spectrogram */
.waveform {
    position: relative !important;
}

#waveform0 {
    height: auto !important; /* Allow container to grow to display both waveform and spectrogram */
    min-height: 180px; /* Fit both the wavesurfer and spectrogram plugin canvases more tightly */
}

/* Antispoof plot container styling - floating high-tech absolute overlay */
.antispoof-plot {
    position: absolute;
    top: 2px; /* Float elegantly at the top edge of WaveSurfer and Spectrogram */
    left: 0;
    width: 100%;
    z-index: 25; /* Keep it on top of wavesurfer and spectrogram canvases */
    pointer-events: none; /* Let all mouse clicks/touches pass through to the wavesurfer underneath */
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}