* {
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
html {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}
body {
    width: 100%;
    overflow: hidden;
}

#music-list {
    transition: all 0.2s;
    overflow-y: auto;
    flex: 1;
    height: auto;
    border: 0.1px solid #6E55FF;
}

#music-player {
    padding: 10px;
    width: 100%;
    flex-shrink: 0;
}
#music-container {
    background: linear-gradient(135deg, #7200A1, #6E55FF);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.music-item {
    height: 50px;
    padding: 5px;
    width: 100%;           
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.music-item:focus, .music-item:hover {
    background: linear-gradient(
       135deg,
       rgba(255,255,255,0.1),
       rgba(255,255,255,0.1)
    );
}
.music-item.selector {
    background: linear-gradient(
       135deg,
       rgba(255,255,255,0.4),
       rgba(255,255,255,0.1)
    );
}
#music-player-control {
    line-height: 2;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}         
#music-player-time {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#music-player-control-play {
    margin: 0 10px;
}
#music-player-progress {
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

#music-player-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6E55FF, #7200A1);
    border-radius: 10px;
}

#music-player-progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: white;
    border: 2px solid #7200A1;
    border-radius: 50%;
    left: 0%;
}