#brh-booking-wrap {
    margin: 24px 0 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

#brh-booking-head {
    padding: 12px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

#brh-booking-grid {
    padding: 12px;
}

#brh-booking-summary {
    margin-top: 12px;
    padding: 12px 14px;
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

#brh-booking-summary strong {
    display: block;
    margin-bottom: 4px;
}

#brh-booking-note {
    margin-top: 8px;
    color: #666;
    font-size: 13px;
}

.brh-day-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.brh-day-slot {
    padding: 12px 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    border: 0;
}

.brh-day-slot-free {
    background: #2ecc71;
    color: #fff;
    cursor: pointer;
}

.brh-day-slot-busy {
    background: #e74c3c;
    color: #fff;
    cursor: not-allowed;
    opacity: .95;
}

.brh-day-slot small {
    display: block;
    margin-top: 3px;
    font-weight: 600;
    opacity: .95;
}

.brh-selected-box {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #eaf4ff;
    color: #0b5cab;
    font-weight: 600;
}

#brh-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#brh-modal-card {
    background: #fff;
    width: min(820px, 100%);
    max-height: 85vh;
    overflow: auto;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .3);
}

#brh-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
}

#brh-modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

#brh-modal-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

#brh-modal-close {
    border: none;
    background: #f1f1f1;
    border-radius: 999px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

#brh-modal-content {
    padding: 16px 18px 18px;
}

.brh-notice {
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    margin-top: 10px;
    font-size: 13px;
}

.brh-disabled-day {
    opacity: .5;
}