body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    background: #007BFF;
    color: white;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.player {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}


main {
    margin-top: 150px;
    padding: 20px;
    background: #007BFF;
}


button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 5px;
    color: #333;
    background-color: #333;
    padding: 5px;
    cursor: pointer;
    margin-left: 10px;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#castButton {
    background-image: url('./icons/button-stream.svg');
}

#playButton {
    background-image: url('./icons/button-play.svg');
}

#stopButton {
    background-image: url('./icons/button-pause.svg');
}

#muteButton {
    background-image: url('./icons/button-mute.svg');
}


.station-list {
    margin-top: 20px;
}

h1 {
    font-family: 'Arial', sans-serif;
}

ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0;
}

li {
    display: flex;
    align-items: center; /* Center the icon and text vertically */
    padding: 10px; /* Add padding for spacing */
    margin: 5px 0; /* Add margin between items */
    background-color: #f9f9f9; /* Light background for list items */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    color: #333; /* Text color */
    font-family: 'Arial', sans-serif; /* Modern font */
}

li:hover {
    background-color: #e0e0e0; /* Change background on hover */
    cursor: pointer; /* Change cursor to pointer */
}