/* Import Google Fonts for custom styling */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: #1e1e2f;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

.container {
    background: #292941;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 350px;
    width: 90%;
}

h1 { 
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00bfa5; 
}

#radio-widget {
    background: #1e1e2f;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

#cover-art {
    width: 100%;
    height: auto;
    max-width: 250px; /* Adjusted for better fit */
    border-radius: 10px;
    margin-bottom: 10px;
}

#song-info {
    margin: 10px 0;
}

#song-title {
    font-size: 1.2rem; /* Font size for song title */
    margin: 0;
}

#song-author {
    font-size: 1rem; /* Font size for song author */
    color: #aaa;
}

#controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#play-pause {
    background-color: #00bfa5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

#play-pause:hover {
    background-color: #009a8e;
}

#volume-slider {
    -webkit-appearance: none;
    width: 80px;
    height: 5px;
    background: #00bfa5;
    border-radius: 5px;
    outline: none;
    margin-top: 5px;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.navbar {
    width: 100%;
    background-color: #292941;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 60px;
}

.navbar .logo a {
    color: #00bfa5;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00bfa5;
}

@media (max-width: 600px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .nav-links li {
        padding: 10px 0;
    }
}
