body{
    display:flex;
    justify-content: center;
    background-color: rgb(0, 8, 1);
    padding-top:50px;
}
.wrapper {
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 450px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
    font-size: 60px;
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgb(0, 0, 0);
}

.header {
    width: 100%;
    flex: 2.5;
    background-color: rgb(20, 21, 20);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: rgb(0, 255, 140);
    z-index: 100;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.539);
}

.icon {
    width: 60px;
    border-radius: 10px;
}

.popify-icon {
    width: 60px;
    background-color: black;
    aspect-ratio: 1/1;
}

.songs-wrapper {
    width: 100%;
    flex: 8;
    background-color: rgb(0, 255, 115);
    display: flex;
    justify-content: center;
    overflow-y: hidden;
}

.songs {
    background-color: rgb(11, 11, 14);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: scroll;
    padding: 8px;
    background-image: linear-gradient(rgb(11, 11, 14), 80%, rgb(4, 30, 14))
}

.song {
    background-color: rgb(30, 30, 32);
    border-radius: 5px;
    width: 100%;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    transition: background-color 0.4s ease;
}

.song:hover {
    background-color: rgb(58, 59, 67);
    cursor: pointer;
}

.song-icon {
    padding: 10px;
}

.song-icon {
    height: 65px;
    border-radius: 35px;
    box-sizing: border-box;
}

.songs::-webkit-scrollbar {
    width: 10px;
}

.songs::-webkit-scrollbar-track {
    background: rgb(20, 21, 20);
    border-radius: 10px;
}

.songs::-webkit-scrollbar-thumb {
    background-color: rgb(0, 255, 140);
    border-radius: 10px;
    border: 2px solid rgb(20, 21, 20);
    transition: background-color 0.3s ease;
}

.songs::-webkit-scrollbar-thumb:hover {
    background-color: rgb(0, 200, 110);
    cursor:pointer;
}

.song-info {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    user-select: none;
}

.song-name {
    font-size: 20px;
    font-weight: normal;
}

.song-artist {
    font-size: 13px;
    color: rgb(159, 159, 159);
    font-weight: normal;
}

.toolbar {
    width: 100%;
    flex: 1.8;
    background-color: rgb(57, 137, 92);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    flex-direction: column;
}

.toolbar .song-play-icons {
    display: flex;
}

.song-play-icons {
    flex: 8;
    display: flex;
    justify-content: space-around;
}

.rotate {
    transform: rotate(180deg);
}

.toolbar .song-play-icons div img {
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease;
}

.toolbar .song-play-icons div img:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.song-playBar {
    display: flex;
    padding: 3px;
}

.song-durationBar {
    width: 100%;
    height: 12px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    opacity: 0.7;
    border-radius: 10px;
}

.song-durationBar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background: #000000;
    cursor: pointer;
}