html {
    color-scheme: dark;
}

html,
body {
    background: #000000;
    color: #dddddd;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    height: 100%;
    overflow: hidden;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/*STYLE FOR PHONEMES AND SLIDERS*/

/* Basic styling for the phoneme slider container */
#sliderContainer {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    z-index: 10;
    padding: 20px;
}

/* Style each phoneme's wrapper */
.slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 200px;
    padding: 10px;
    border-bottom: 1px solid #595959;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
    position: relative;
}

/* Style for labels and sample word */
.phoneme-label {
    font-size: 0.8em;
    font-weight: bold;
    text-align: left;
    color: #dddddd;
}

.sample-word {
    font-size: 0.8em;
    color: #999999;
}

input[type="range"] {
    width: 100%;
}

#micPrompt {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: #666666;
    font-size: 0.7em;
    font-family: 'IBM Plex Mono', monospace;
    pointer-events: none;
    white-space: nowrap;
}

/* #instructions{
    color:white;
    width: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -100px;
    font-size: 0.8em;
    text-align: center;
}

#instructions button{
    background-color: blue;
    color: white;
    border: none;
    padding: 12px;
}

#instructions button:hover{
    background-color: rgb(30, 30, 30);
} */
