:root {
    --text-color: white;
    --border-color: #3e434c;
}

.player {
    height: 640px;
    width: 199px;
    border-radius: 40px;
    background-image: url('radioplayer/hintergrund/musikplayer_hintergrund.jpg');
    background-size: cover;
    border: solid 2px var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.top {
    text-align: center;
    margin-bottom: 10px;
}

.indicator {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: white;
}

.song_details {
    overflow: hidden;
    white-space: nowrap;
    margin: 10px 0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: white;
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: white;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.button1 {
    border-radius: 50%;
    height: 55px;
    width: 55px;
    background: var(--button-bg);
    border: none;
    box-shadow: -7px -6px 10px 5px var(--button-hover), 6px 6px 10px rgb(39, 42, 47);
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.button1:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.time {
    font-size: 18px;
    margin: 5px 0;
}

.player .center img {
    transform: translatex(0px) translatey(0px) !important;
    padding-left: 18px;
}

.player .button1 img {
    display: inline-block;
    transform: translatex(-2px) translatey(0px);
}

.player .button1 {
    padding-top: 9px;
    padding-right: 50px;
}

#backgroundSelector1 {
    margin-top: 10px;
    padding: 10px;
    border: 2px solid var(--select-border, #ccc);
    border-radius: 5px;
    background-color: var(--select-bg, #222);
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#backgroundSelector1:hover {
    background-color: black;
}

#musicPlayer {
    left: 16px;
}

#musicPlayer .top p {
    font-size: 12px;
    position: relative;
    top: 8px;
}

#containerSchedule1 {
    margin-top: 20px;
    text-align: center;
}

#containerSchedule1 div h1 {
    font-size: 11px;
}

#api_lfm_current_playlists img {
    transform: scale(0.55);
}