/* ============================================
   Interview Calendar – Scrollable Month View
   ============================================ */

/* calendar wrapper */
.calendar-container {
    width: 80%;
    margin: 20px auto;
    overflow-x: auto;
}


/* table takes full width but stays compact in height */
.calendar-table {
    width: 100%;
    table-layout: fixed;
}

/* day cell */
.calendar-cell {
    min-height: 180px;
    max-height: 220px;          /* <-- Controls total visible height */
    overflow-y: auto;           /* <-- Enables scrolling INSIDE the cell */
    padding: 4px;
}

/* keep scrollbars slim and modern */
.calendar-cell::-webkit-scrollbar {
    width: 6px;
}
.calendar-cell::-webkit-scrollbar-thumb {
    background: #c2c2c2;
    border-radius: 3px;
}
.calendar-cell::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* header */
.calendar-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

/* interview badge */
.calendar-badge {
    white-space: normal !important;
    text-align: left;
    line-height: 1.1;
    padding: 4px 6px !important;
}
