.plyr {
    transition: 0.3s ease;
}
.plyr__control svg {
    fill: black;
    transition: 0.3s ease;
}
.plyr__controls__item.plyr__time {
    color: black;
    transition: 0.3s ease;
}
.plyr__controls {
    transition: 0.3s ease;
}
@media screen and (max-width: 1020px) {
    .plyr__controls {
        transition: 0.3s ease;
    }
}
.ahidden {
    display: none;
}
body.night .plyr__controls {
    background-color: #282828 !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}
@media screen and (max-width: 1020px) {
    body.night .plyr__controls {
        background-color: #212121 !important;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
}
body.night .plyr__control svg {
    fill: white;
}
body.night .plyr__controls__item.plyr__time {
    color: white;
}
.lyrics-container {
    max-height: 200px;
    overflow-y: auto;
    margin-top: 20px;
    text-align: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.lyrics-container::-webkit-scrollbar {
    display: none;
}
.lyric-line {
    padding: 5px 0;
    transition: 0.3s ease;
    opacity: 0.6;
    line-height: 1.5;
    scroll-snap-align: center;
    min-height: 2em;
    transform: scale(1) translateZ(0);
    backface-visibility: hidden;
}
body.night .lyric-line {
    color: white;
}
.lyric-line.active {
    opacity: 1;
    font-weight: bold;
    font-size: x-large;
    transform: scale(1.05);
    max-width: 95%;
    display: inline-block;
    transform-origin: center 55%;
    position: relative;
}