body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #f4f4f4;
    transition: background-color 0.3s, color 0.3s;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2a2a2a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    border-radius: 10px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
    color: #ff6b6b;
}

h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #f4f4f4;
}

#date {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ff6b6b;
}

#iftar-countdown {
    margin-top: 20px;
    font-size: 1.5em;
    color: #d9534f;
}

#iftar-time {
    font-size: 2em;
    color: #d9534f;
    margin-top: 10px;
}

select, button {
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
}

#prayer-times {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.prayer-time {
    background-color: #3a3a3a;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    width: 45%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.prayer-time h3 {
    margin: 0;
    font-size: 1.2em;
    color: #ff6b6b;
}

.prayer-time p {
    margin: 5px 0 0;
    font-size: 1.1em;
    color: #f4f4f4;
}

.prayer-time.next {
    background-color: #ff6b6b;
    color: #1a1a1a;
}

.prayer-time.next h3 {
    color: #1a1a1a;
}

footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #1a1a1a;
    text-align: center;
}

footer a {
    color: #3a3a3a;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}

footer a.current {
    color: #ff6b6b;
}

@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    select, button {
        padding: 8px;
        margin: 8px 0;
    }

    .prayer-time {
        width: 100%;
    }

    #iftar-countdown {
        font-size: 1.2em;
    }

    #iftar-time {
        font-size: 1.5em;
    }

    footer a {
        display: block;
        margin: 5px 0;
    }
}