body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

.content {
    background-image: url("../images/bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 1000px;
    max-width: 100%;
    background-image: url("../images//background.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    justify-content: end;
    margin-bottom: 140px;
}

.player {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(../images/playerbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 389px;
    height: 363px;
    margin: 0 auto;
    text-align: center;
}

.dobra-prica {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.banner {
    background: #fff;
    padding: 10px;
}

.volume-control {
    display: flex;
    gap: 10px;
}

#volumeSlider {
    -webkit-appearance: none; /* Remove default styling for Webkit browsers */
    width: 125px; /* Adjust width as needed */
    height: auto; /* Height of the track */
    background: transparent; /* Gray background for the track */
    outline: none; /* Remove outline */
    border-radius: 5px; /* Rounded edges for the track */
    overflow: hidden; /* Hide overflow for the track */
}

#volumeSlider::-webkit-slider-runnable-track {
    height: 1px;
    background: red; /* Red track */
    border: none;
}

#volumeSlider::-moz-range-track {
    height: 1px;
    background: red;
    border: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px; /* Size of the thumb */
    width: 18px;
    background: white; /* White thumb */
    border: 2px solid #666; /* Gray border for the thumb */
    border-radius: 50%; /* Circular thumb */
    cursor: pointer;
    margin-top: -9px; /* Adjust vertical alignment */
}

#volumeSlider::-moz-range-thumb {
    height: 18px;
    width: 18px;
    background: white;
    border: 2px solid #666;
    border-radius: 50%;
    cursor: pointer;
}

.radiotuzlalogo {
    max-width: 200px;
}

.now-playing h4{
    font-size: 1rem;
    margin-bottom: 5px;
}

.now-playing p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    margin-bottom: 10px;
}

.info-email {
    text-decoration: none;
    color: initial;
    transition: all 0.25s ease-in-out;
}

.info-email:hover {
    color: #007bff;
    text-decoration: underline;
}

.contact-info {
    font-size: 1rem;
}

@media screen and (max-width: 541px) {

    .content {
        max-width: 100%;
    }

    .logo { 
        padding: 5px;
        margin-bottom: 1px;
    }

    .dobra-prica {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .player {
        overflow-x: hidden;
        max-width: 100%;
        background-size: contain;
    }

    .container {
        padding: 0;
        height: auto;
    }

    .banner {
        display: none;
    }

    .contact-info {
        text-align: center;
    }
}