.prayer-times-monthly {
    max-width: 100%;
    overflow-y: auto;
    overflow-x: auto;
    font-family: inherit;
}

.prayer-times-monthly table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.prayer-times-monthly th,
.prayer-times-monthly td {
    padding: 0.5rem 0.7rem;
    border: 1px solid #ddd;
    text-align: center;
    height: 50px;
    vertical-align: middle;
    word-wrap: break-word;
    white-space: normal;
}

/* Header style */
.prayer-times-monthly th {
    position: sticky;
    top: 0;
    background-color: #1e293b !important;
    color: #fff;
    z-index: 10;
    font-weight: bold;
    white-space: nowrap;
}

/* Friday row style */
.prayer-times-monthly .friday-row {
    background-color: #d3d3d3;
    font-weight: bold;
}

/* Today's row style — FULL row highlighted, including first and second columns */
.prayer-times-monthly .today-row {
    background: #a3b18a;
    font-weight: bold;
    color: #1e293b;
}


/* Hover effect for all non-today rows */
.prayer-times-monthly tbody tr:hover:not(.today-row) {
    background: #e2e8f0;
    color: #000;
    transition: background 0.3s ease;
}

/* First column (Day), unless it's today */
.prayer-times-monthly tbody tr:not(.today-row):not(:hover) td:first-child {
    background: #1e293b;
    color: white;
    font-weight: bold;
}

/* Second column (Date), unless it's today */
.prayer-times-monthly tbody tr:not(.today-row):not(:hover) td:nth-child(2) {
    background-color: #d3d3d3;
    font-weight: bold;
}

/* Keep bold text in Day and Date columns on hover */
.prayer-times-monthly tbody tr:hover:not(.today-row) td:first-child,
.prayer-times-monthly tbody tr:hover:not(.today-row) td:nth-child(2) {
    font-weight: bold;
}

/* Cell hover zoom effect */
/* .prayer-times-monthly td:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
    cursor: default;
} */

/* Vertical text */
.prayer-times-monthly .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Download PDF button
.prayer-times-monthly .download-pdf {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    cursor: not-allowed;
    opacity: 0.6;
} */

/* Mobile scroll */
@media (max-width: 768px) {
    .prayer-times-monthly table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .prayer-times-monthly th,
    .prayer-times-monthly td {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}
