/* -- RADIO PLAYER -- */

.live-player-container {
    margin-bottom: 2.2%;
}

.audio-controls {
    display: flex;
    align-items: center;
}

.audio-player {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #db0000;
    border: 5px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 800px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

audio {
    display: none;
}

#play-pause {
    font-size: 36px;
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-player:hover {
    transform: scale(1.05) rotateX(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.audio-player:hover #play-pause {
    transform: scale(1.1);
}

.audio-player:hover #play-pause.play {
    font-size: 50px;
}

.audio-player:hover #play-pause.pause {
    font-size: 30px;
}

.volume-bar {
    width: 150px;
    height: 10px;
    background-color: #db0000 !important;
    margin-left: 10px;
}

.volume-level {
    width: 50%;
    height: 100%;
    background-color: #000000;
}

.mute-button {
    color: #db0000;
    font-size: 30px;
    margin-left: 10px;
    cursor: pointer;
}

.live-player-container {
    margin-top: 60px; /* Adjust this value as needed */
}

.logo-banner {
    float: right;
    margin-bottom: 5px;
}
/* -- RADIO PLAYER -- */
