.prayer-section {
    text-align: center;
}

.prayer-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #581018;
}

.prayer-date {
 
    color: #444;
    font-weight: bold;
    font-size: 22px;
}

.next-prayer {
    background: linear-gradient(135deg, #581018, #8b1c2e);
    color: #fff;
    padding: 1.5rem;
    border-radius: 14px;
    margin: 0 auto 2rem;
    max-width: 420px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.next-prayer h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
}

.next-prayer p {
    font-size: 22px;
    margin-bottom: 8px;
}

.countdown span {
    background: #fff;
    color: #581018;
    padding: 6px 12px;
    margin: 0 3px;
    border-radius: 6px;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: inline-block;
}
 

.fade {
    opacity: 0;
    transition: opacity 0.6s;
}
.fade.show {
    opacity: 1;
}

.prayer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
}

.prayer-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.prayer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.prayer-card h4 {
    font-size: 22px;
    color: #581018;
    margin-bottom: 6px;
}

.prayer-card p {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.prayer-card .icon {
    font-size: 26px;
    color: #581018;
    margin-bottom: 8px;
}

.prayer-card.active {
    border: 2px solid #8b1c2e;
    background: #fff5f6;
    transform: scale(1.03);
}


.prayer-date i {
    margin-left: 6px;
    color: #581018;
}

#next-prayer-time   {
  
    color: #ffd369; 
}
#next-prayer-time i {
    margin: 0 4px;
    color: #ffd369; 
}
#countdown i {
    margin-right: 8px;
    color: #fff;
}
