/* Calendar specific styles */

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar-table {
    width: 100%;
    table-layout: fixed;
    /* ensure equal width columns */
}

.calendar-table th,
.calendar-table td {
    width: 14.28%;
    /* 100 / 7 */
    height: 110px;
    vertical-align: top;
    position: relative;
    padding: 0.25rem;
}

.calendar-table td {
    cursor: default;
}

.calendar-table .nep-date {
    font-weight: 600;
}

.calendar-table .eng-date {
    position: absolute;
    bottom: 4px;
    right: 6px;
    font-size: 0.65rem;
    color: #555;
}

/* Highlight Saturday and public holidays */
.calendar-table .saturday,
.calendar-table .holiday {
    background-color: #fdecea;
    /* light red */
    color: #b71c1c;
}

/* Optionally style today */
.calendar-table .today {
    border: 2px solid #0d6efd;
}

.events-list {
    margin-top: 2rem;
}