/* /Pages/Appointments/AppointmentCalendar.razor.rz.scp.css */
/* Calendar grid styles live in WeekView.razor.css and MonthView.razor.css */
/* /Pages/Appointments/MonthView.razor.rz.scp.css */
.cal-month-root[b-q982hk7ju6] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    overflow: hidden;
    background: var(--mud-palette-surface);
}

.cal-month-header[b-q982hk7ju6] {
    display: grid;
    grid-template-columns: repeat(7, calc(100%/7));
    background: var(--mud-palette-background-grey);
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.cal-month-header-cell[b-q982hk7ju6] {
    text-align: center;
    padding: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mud-palette-text-secondary);
    font-weight: 600;
}

.cal-month-grid[b-q982hk7ju6] {
    display: grid;
    grid-template-columns: repeat(7, calc(100%/7));
    gap: 1px;
    background: var(--mud-palette-lines-default);
}

.cal-month-cell[b-q982hk7ju6] {
    background: var(--mud-palette-surface);
    min-height: 110px;
    padding: 4px;
    cursor: pointer;
    transition: background 0.1s;
}

.cal-month-cell:hover[b-q982hk7ju6] {
    background: var(--mud-palette-background-grey);
}

.cal-month-cell.cal-other-month[b-q982hk7ju6] {
    background: var(--mud-palette-background-grey);
    opacity: 0.6;
}

.cal-month-cell.cal-today-cell[b-q982hk7ju6] {
    background: rgba(var(--mud-palette-primary-rgb, 98, 0, 238), 0.06);
}

.cal-month-day-num[b-q982hk7ju6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--mud-palette-text-primary);
    margin-bottom: 2px;
}

.cal-month-event[b-q982hk7ju6] {
    font-size: 0.72rem;
    background: var(--mud-palette-primary);
    color: white;
    border-radius: 3px;
    padding: 1px 4px;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: block;
}

.cal-month-event:hover[b-q982hk7ju6] {
    filter: brightness(1.1);
}

.cal-month-more[b-q982hk7ju6] {
    font-size: 0.7rem;
    color: var(--mud-palette-text-secondary);
    padding-left: 4px;
}

.cal-today-badge[b-q982hk7ju6] {
    background: var(--mud-palette-primary);
    color: white;
    border-radius: 50%;
}
/* /Pages/Appointments/WeekView.razor.rz.scp.css */
.cal-week-root[b-19gxnowarn] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 75vh;
    background: var(--mud-palette-surface);
}

.cal-week-header[b-19gxnowarn] {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 3.5rem repeat(7, calc((100% - 3.5rem) /7));
    border-bottom: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-background-grey);
}

.cal-time-gutter[b-19gxnowarn] {
    border-right: 1px solid var(--mud-palette-lines-default);
    background-color: ghostwhite;
}

.cal-day-header[b-19gxnowarn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 0;
    border-left: 1px solid var(--mud-palette-lines-default);
    font-size: 0.8rem;
    color: var(--mud-palette-text-secondary);
    background-color: ghostwhite;
}

.cal-day-header.cal-today[b-19gxnowarn] {
    color: var(--mud-palette-primary);
}

.cal-day-name[b-19gxnowarn] {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.cal-day-number[b-19gxnowarn] {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.cal-today-badge[b-19gxnowarn] {
    background: var(--mud-palette-primary);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cal-week-body[b-19gxnowarn] {
    display: grid;
    grid-template-columns: 3.5rem repeat(7, calc((100% - 3.5rem) /7));
}

.cal-time-col[b-19gxnowarn] {
    border-right: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-background-grey);
}

.cal-time-slot-label[b-19gxnowarn] {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 6px;
    padding-top: 2px;
    font-size: 0.7rem;
    color: var(--mud-palette-text-secondary);
    border-top: 1px solid var(--mud-palette-lines-default);
    box-sizing: border-box;
}

.cal-day-col[b-19gxnowarn] {
    position: relative;
    border-left: 1px solid var(--mud-palette-lines-default);
    min-height: 780px;
    cursor: pointer;
}

.cal-day-col.cal-today-col[b-19gxnowarn] {
    background: rgba(var(--mud-palette-primary-rgb, 98, 0, 238), 0.04);
}

.cal-hour-line[b-19gxnowarn] {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid var(--mud-palette-lines-default);
    pointer-events: none;
}

.cal-event[b-19gxnowarn] {
    position: absolute;
    border-radius: 4px;
    padding: 2px 4px;
    background: var(--mud-palette-primary);
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
    z-index: 1;
    transition: filter 0.1s;
}

.cal-event:hover[b-19gxnowarn] {
    filter: brightness(1.1);
}

.cal-event-title[b-19gxnowarn] {
    display: block;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cal-event-time[b-19gxnowarn] {
    display: block;
    font-size: 0.68rem;
    opacity: 0.85;
}
