/* 3-Month Calendar Styles */
.abp-month-container {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.abp-month-header {
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--abp-text-main);
    margin-bottom: 12px;
}

.abp-calendar-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    margin-top: 10px;
}

.abp-calendar-grid > div {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.abp-cal-day-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--abp-text-muted);
    padding: 8px 0 !important;
    text-transform: uppercase;
    background-color: #f9f9f9;
}

.abp-cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 13px;
    color: var(--abp-text-main);
    cursor: pointer;
    transition: all 0.2s ease;
}

.abp-cal-day:hover:not(.disabled):not(.selected) {
    background: #e7f0ff;
    color: var(--abp-primary);
}

.abp-cal-day.disabled {
    color: #d0d0d0;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #fafafa;
}

.abp-cal-day.selected {
    background: var(--abp-primary) !important;
    color: #ffffff !important;
    font-weight: 600;
}

.abp-cal-day.today:not(.selected) {
    box-shadow: inset 0 0 0 2px var(--abp-primary);
    color: var(--abp-primary);
    font-weight: 600;
}

.abp-cal-day.cal-available:not(.selected) {
    background-color: #e6f4ea !important;
    color: #137333 !important;
    border: 1px solid #137333 !important;
}

.abp-cal-day.cal-fully-booked:not(.selected) {
    background-color: #fdecea !important;
    color: #c5221f !important;
    border: 1px solid #c5221f !important;
}

/* Slots styles */
.abp-slot-chip {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column !important;
    text-align: center;
    padding: 6px 12px !important;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--abp-text-main);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    height: 52px !important;
    min-height: 52px !important;
    box-sizing: border-box !important;
    line-height: 1.3 !important;
}

.abp-slot-chip:not(.booked) {
    background-color: #e6f4ea !important;
    color: #137333 !important;
    border: 1px solid #137333 !important;
}

.abp-slot-chip:not(.booked):hover:not(.selected) {
    background-color: #137333 !important;
    color: #ffffff !important;
}

.abp-slot-chip.booked {
    background-color: #fdecea !important;
    color: #c5221f !important;
    border: 1px solid #c5221f !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}

.abp-slot-chip.selected {
    background-color: #1b4d3e !important; /* Premium Dark Green Selection */
    color: #ffffff !important;
    border-color: #1b4d3e !important;
    box-shadow: 0 4px 8px rgba(27, 77, 62, 0.25) !important;
}
