body {
    font-family: Arial, sans-serif;
    background: url('assets/bg.jpg');
    margin: 0;
    padding: 0;
}
.container {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}
.player {
    text-align: center;
}
.station-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.station-buttons button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.station-buttons button:hover {
    background: #0056b3;
}
.station-card {
    margin: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    text-align: center;
}
.station-card img {
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}
#nowPlaying {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
}
@media (max-width: 768px) {
    .station-card {
        padding: 10px;
    }
    .station-card img {
        max-width: 80%;
        margin-bottom: 5px;
    }
    .station-buttons button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}
#whatsapp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
#whatsapp-popup img {
    max-width: 50px;
}
/* Style for Play Store icon */
#playstore {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    max-width: 150px; /* Adjust size as needed */
    cursor: pointer;
}
#playstore:hover {
    opacity: 0.8;
}