/**
 * 방방곳곳 예약 달력 스타일
 */
.bb-reserve-app { max-width: 420px; margin: 0 auto; }

.bb-reserve-notice {
    text-align: center;
    padding: 24px;
    background: #f9fafb;
    border-radius: 16px;
    color: #4b5563;
    font-size: 15px;
}
.bb-reserve-notice a { color: #e71f19; font-weight: 600; text-decoration: none; }
.bb-reserve-notice a:hover { text-decoration: underline; }

.bb-cal-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px;
}
.bb-cal-title { font-weight: 700; font-size: 17px; color: #2C3E50; }
.bb-cal-nav {
    width: 36px; height: 36px; border: 1px solid #e5e7eb; background: #fff;
    border-radius: 8px; cursor: pointer; font-size: 18px; line-height: 1; color: #374151;
}
.bb-cal-nav:hover { background: #f3f4f6; }

.bb-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bb-cal-dow { text-align: center; font-size: 12px; color: #9ca3af; padding: 6px 0; font-weight: 600; }
.bb-cal-dow.sun { color: #ef4444; }
.bb-cal-dow.sat { color: #3b82f6; }

.bb-cal-cell {
    aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
    font-size: 14px; border-radius: 10px; cursor: pointer; color: #374151;
    user-select: none;
}
.bb-cal-cell.empty { cursor: default; }
.bb-cal-cell[data-date]:hover { background: #fff1f0; }
.bb-cal-cell.past { color: #d1d5db; cursor: not-allowed; }
.bb-cal-cell.blocked {
    color: #d1d5db; cursor: not-allowed; text-decoration: line-through;
    background: #f3f4f6;
}
.bb-cal-cell.checkin, .bb-cal-cell.checkout { background: #e71f19; color: #fff; font-weight: 700; }
.bb-cal-cell.inrange { background: #fde2e1; color: #b91c1c; }

.bb-reserve-summary { margin-top: 16px; min-height: 24px; }
.bb-hint { color: #6b7280; font-size: 14px; text-align: center; }
.bb-sum-row { font-size: 14px; color: #374151; padding: 4px 0; }
.bb-sum-row strong { color: #2C3E50; }
.bb-free { color: #059669; font-weight: 700; }
.bb-sum-err { color: #dc2626; font-size: 13px; margin-top: 6px; }

.bb-reserve-submit {
    width: 100%; margin-top: 16px; padding: 14px; border: none; border-radius: 9999px;
    background: #e71f19; color: #fff; font-size: 16px; font-weight: 700; cursor: pointer;
    transition: background .2s;
}
.bb-reserve-submit:hover:not(:disabled) { background: #c81a15; }
.bb-reserve-submit:disabled { background: #f3a9a6; cursor: not-allowed; }

.bb-reserve-result { text-align: center; padding: 8px; }
.bb-success { color: #065f46; background: #d1fae5; border-radius: 12px; padding: 16px; font-size: 15px; }
.bb-bank { margin-top: 12px; font-size: 14px; color: #374151; background: #fffbeb; border-radius: 12px; padding: 14px; }
.bb-mypage-link { display: inline-block; margin-top: 14px; color: #e71f19; font-weight: 600; text-decoration: none; }
