.asm-calendar-week-day-picker,
.asm-calendar-week-agenda {
    display: none;
}
.asm-calendar-week-day-chip {
    display: grid;
    align-content: center;
    gap: 2px;
    min-height: 54px;
    padding: 8px 6px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #fff;
    color: #1d2327;
    text-align: center;
    text-decoration: none;
}
.asm-calendar-week-day-chip span {
    color: #667085;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
}
.asm-calendar-week-day-chip strong {
    font-size: 14px;
    line-height: 1.1;
}
.asm-calendar-week-day-chip.has-lessons {
    border-color: var(--asm-booking-primary);
    box-shadow: inset 0 -3px 0 var(--asm-booking-primary);
}
.asm-calendar-week-day-chip.has-lessons:hover,
.asm-calendar-week-day-chip.has-lessons:focus {
    background: #f8fafc;
    outline: 2px solid var(--asm-booking-primary);
    outline-offset: 2px;
}
.asm-calendar-week-day-chip.is-empty {
    border-color: #e4e7ec;
    background: #f8fafc;
    color: #98a2b3;
}
.asm-calendar-week-day-chip.is-empty span,
.asm-calendar-week-day-chip.is-empty strong {
    color: #98a2b3;
}
.asm-calendar-week-agenda-day {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    background: #fff;
}
.asm-calendar-week-agenda-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e4e7ec;
    line-height: 1.2;
}
.asm-calendar-week-agenda-heading span {
    color: #475467;
    font-size: 14px;
    font-weight: 600;
}
.asm-calendar-week-agenda-heading strong {
    font-size: 18px;
}
@media (max-width: 900px) {
    .asm-calendar-week-day-picker {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 6px;
        margin-bottom: 10px;
    }
}
@media (max-width: 520px) {
    .asm-calendar-week-day-picker {
        gap: 4px;
    }
    .asm-calendar-week-day-chip {
        min-height: 48px;
        padding: 7px 3px;
    }
    .asm-calendar-week-day-chip span {
        font-size: 11px;
    }
    .asm-calendar-week-day-chip strong {
        font-size: 13px;
    }
}
