#prayer-widget {
    max-width: 1100px;
    margin: auto;
    padding: 25px;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #000;
}

.next-prayer-box {
    text-align: center;
    margin-bottom: 20px;
}

#nextPrayerName {
    font-size: 22px;
    font-weight: bold;
}

#countdown {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

/* TODAY CARDS */
#todayPrayers {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 25px;
}

.prayer-card {
    flex: 1;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background: #f8f8f8;
    transition: 0.3s;
}

.prayer-card.active {
    background: #000;
    color: #fff;
}

.p-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.p-time {
    font-size: 18px;
}

/* TABLE */
.premium-table {
    width: 100%;
    border-collapse: collapse;
}

.premium-table th {
    background: #000;
    color: #fff;
    padding: 10px;
}

.premium-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.today-row {
    background: #000;
    color: #fff;
    font-weight: bold;
}