/*
 * Namaz Schedule Bengali - style.css
 * Version: 4.0
*/
.nsb-wrapper {
    font-family: 'Noto Sans Bengali', sans-serif;
    padding: 1rem;
    background: #f0fdfa;
    border-radius: 0.75rem;
    max-width: 900px;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.nsb-date {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}
.nsb-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.nsb-card {
    background: #fff;
    border: 1px solid #bae6fd;
    border-radius: 0.5rem;
    padding: 1.25rem 1rem;
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.nsb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.nsb-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #0369a1;
}
.nsb-time {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    margin: 0.25rem 0;
}
.nsb-countdown {
    margin-top: 0.75rem;
    color: #15803d;
    font-size: 0.8rem;
    font-weight: bold;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}
.nsb-next {
    background: #dcfce7;
    border-color: #22c55e;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(34,197,94,0.2);
}
/* Style for the loading/error message container */
#nsb-geowrapper {
    font-family: 'Noto Sans Bengali', sans-serif;
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    color: #475569;
}
/* Responsive design */
@media(max-width: 600px) {
    .nsb-grid {
        flex-direction: column;
        align-items: center;
    }
    .nsb-card {
        width: 80%;
        max-width: 300px;
    }
}