@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://db.onlinewebfonts.com/c/a124283ed04fa46545c082804d5f6680?family=Arial+Narrow+Bold');

body {
    background-color: black;
    color: white;
    font-family: 'Arial Narrow Bold';
    text-align: center;
}

#plot-container {
    width: 100%;
    height: 80vh;      /* Adjust as needed (80% of viewport height) */
    /* border: 1px solid white; */
}
#plot {
    width: 100%;
    height: 100%;
}

#song-slider {
    display: none;
    width: 80%;
    z-index: 2;
}

#song-markers {
    display: none;
    width: 80%;
    padding: 0 10%;
    margin-top: -30px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    text-align: center;
    user-select: none;
}

.legend-box {
    border: 2px solid white;
    border-radius: 5px;
    background-color: rgb(255, 255, 255, 127);
    position: absolute;
    bottom: 20%;
    right: 10%;
    color: black;
    padding: 10px 30px;
    text-align: left;
    display: none;
}

.legend-circle {
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.slido {
    -webkit-appearance: none;
    width: 100vh;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slido::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

#footer{
    background-color: #aac6dc;
    color: white;
}

#legend-btn{
    background-color: #aac6dc;
    color: white;
    font-family: 'Arial Narrow Bold'
}