
/* Location and Date Section */
.info-section {
    background: white;
    padding: 1rem 2rem;
    margin: 1rem auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.info-section .location-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-section select {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.info-section select:focus {
    border-color: #007bff;
}

.info-section .date {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #555;
}

/* Prayer Times Section */
.prayer-times {
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(218px, 0fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.prayer-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prayer-card.highlight {
    background: #e7f3ff;
    border: 2px solid #007bff;
    transform: scale(1.05);
}

.prayer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.prayer-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.prayer-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.prayer-time {
    font-size: 1.2rem;
    color: #555;
}

/* Footer Section */
.footer {
    background: #004085;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-section .location-select {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header h1 {
        font-size: 2rem;
    }

    .prayer-times {
        grid-template-columns: 1fr;
    }
}
    