@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    background-color: #f4f4f4;
    color: #333;
}

.radio {
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    width: 320px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-weight: 500;
    margin-bottom: 15px;
}

#current-station {
    font-size: 1.2em;
    margin-bottom: 10px;
}

button {
    margin: 5px;
    padding: 10px 20px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

button:active {
    background-color: #004080;
}
