/* SLOT_RESERVATION_CALENDAR_125B */
.slot-reservation {
    flex-basis: 100%;
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    background: #ffffff;
}

.slot-reservation-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 14px;
    color: #334155;
}

.slot-reservation-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.slot-reservation-status.is-available {
    background: #ecfdf5;
    color: #047857;
}

.slot-reservation-status.is-busy {
    background: #fff7ed;
    color: #c2410c;
}

.slot-period-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.slot-period {
    min-height: 112px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #f8fafc;
}

.slot-period.is-available {
    background: #f0fdf4;
    border-color: rgba(22, 163, 74, 0.22);
}

.slot-period.is-busy {
    background: #fff7ed;
    border-color: rgba(234, 88, 12, 0.22);
}

.slot-period-date {
    min-height: 38px;
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
}

.slot-period-status {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 800;
    color: #475569;
}

.slot-period-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.slot-period-action:hover {
    color: #ffffff;
    opacity: 0.92;
}

.slot-period-note {
    display: inline-flex;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #9a3412;
}

.selected-slot-box {
    display: grid;
    gap: 5px;
    margin: 8px 0 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #f8fafc;
    color: #0f172a;
}

.selected-slot-box strong {
    font-size: 13px;
}

.selected-slot-box span {
    font-size: 14px;
    font-weight: 800;
}

.selected-slot-box small {
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 900px) {
    .slot-period-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .slot-period-grid {
        grid-template-columns: 1fr;
    }

    .slot-reservation {
        padding: 12px;
    }
}
