body
{
    margin: 0;
}

.audioplayer
{
    width: 100%;
    height: fit-content;
}

.display-panel
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    margin-bottom: 5px;
    background-color: rgb(156, 165, 250);
} 

.display-panel *
{
    margin: 0 10px;
    font-size: 14pt;
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.control-panel
{
    display: flex;
    justify-items: center;
    width: 100%;
    min-height: 30px;
    gap: 2px;
    align-items: flex-start;
    justify-content: center;
}

.control-panel .filler
{
    height: 30px;
    flex: 2;
}

.panel-container
{
    position: fixed;
    width: inherit;
    top: 0;
    z-index: 2;
    background-color: white;
}

.progress-bar
{
    min-width: 100px;
    flex: 2;
}

.slider
{
    width: 100%;
}

.slider::-webkit-slider-thumb
{
    opacity: 0;
    cursor: pointer;
}

.slider:hover::-webkit-slider-thumb
{
    appearance: auto;
    opacity: 1;
}

button
{
    min-width: 30px;
    min-height: 30px;
    background-color: #eeeeee;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
}

button:hover
{
    background-color: rgb(200, 200, 200);
    border: solid 1px rgb(180, 180, 180);
}

button img
{
    width: 10px;
    height: 10px;
}

.playlist
{
    position: relative;
    top: 125px;
    display: flex;
    flex-direction: column;
}

.track
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    background-color: #303030;
    cursor: pointer;
    height: 50px;
    padding: 3px 0;
}

.track *
{
    color: white;
    margin: 0 10px;
    font-size: 16pt;
}

.track[data-selected = "true"]
{
    border: 4px solid salmon;
    border-radius: 10px;
}

.volume-slider
{
    appearance: slider-vertical;
    width: 30px;
    height: 100px;
}

.volume-button-container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.volume-slider-container
{
    display: none;
    background-color: #eeeeee;
    border-radius: 5px;
}

.filler
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-icon img
{
    width: 20px;
    height: 20px;
}
