/*
Theme Name: Booking App Theme
Theme URI:
Author:
Description: Minimal theme for the Booking App WordPress plugin.
Version: 1.1
*/

/* ═══════════════════════════════════════════
   BOOKING APP – Main Stylesheet v2.1
   Single source of truth for all CSS.
   booking-app.css (plugin) only contains
   component-level overrides not needed here.
   ═══════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
    --ba-primary:        #1a3c6e;  /* dark blue – header, buttons          */
    --ba-primary-hover:  #142f58;
    --ba-accent:         #2d6bbf;  /* medium blue – booked slots            */
    --ba-accent-light:   #ddeeff;  /* light blue – booked cell background   */
    --ba-free-hover:     #e8f4e8;  /* green tint on free slot hover         */
    --ba-border:         #c8d0da;  /* visible cell borders                  */
    --ba-border-light:   #e2e8f0;
    --ba-past:           #E9E9E9;
    --ba-past-text:      #b8b8b8;
    --ba-cancel:         #c0392b;
    --ba-cancel-hover:   #a93226;
    --ba-reserve-back:   #60b6a2;  /* teal – reserved slot background       */
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background: #f4f6f9;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */

.ba-header {
    background: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ba-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.ba-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}
.ba-logo:hover { opacity: 0.85; }

/* Image logo variant */
.ba-logo-img {
    display: flex;
    align-items: center;
    padding: 4px 0;
}
.ba-logo-image {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Pagination */
.ba-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 18px 0 6px;
    flex-wrap: wrap;
}
.ba-pagination .ba-page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #ccd;
    background: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    color: var(--ba-primary);
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ba-pagination .ba-page-btn:hover:not(:disabled) {
    background: var(--ba-primary);
    color: #fff;
    border-color: var(--ba-primary);
}
.ba-pagination .ba-page-btn.ba-page-active {
    background: var(--ba-primary);
    color: #fff;
    border-color: var(--ba-primary);
    font-weight: 700;
    cursor: default;
}
.ba-pagination .ba-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.ba-pagination-info {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-bottom: 4px;
}
.ba-page-ellipsis {
    padding: 0 4px;
    color: #aaa;
    line-height: 34px;
    display: inline-block;
    vertical-align: middle;
}

/* Nav links */
.ba-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.ba-nav-link {
    color: rgba(255,255,255,0.80) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.ba-nav-link:hover {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
}
.ba-nav-link--active {
    background: rgba(255,255,255,0.18) !important;
    color: #fff !important;
    font-weight: 600;
}

/* Auth area (right side) */
.ba-header-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.ba-header-username {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
}

.ba-header-login,
.ba-header-logout {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: background 0.15s;
}
.ba-header-login {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3);
}
.ba-header-login:hover {
    background: rgba(255,255,255,0.25);
    color: #fff !important;
}
.ba-header-logout {
    background: transparent;
    color: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(255,255,255,0.2);
}
.ba-header-logout:hover {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
}

/* ════════════════════════════════════════════
   MAIN CONTENT AREA
   ════════════════════════════════════════════ */

.ba-main {
    min-height: calc(100vh - 60px - 56px);
}

.ba-page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */

.ba-footer {
    background: #000;
    border-top: 1px solid var(--ba-primary-hover);
    margin-top: 40px;
}

.ba-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.ba-footer-copy {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.ba-footer-links { display: flex; gap: 16px; }
.ba-footer-links a {
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none !important;
    font-size: 13px;
    transition: color 0.15s;
}
.ba-footer-links a:hover { color: #fff !important; }

/* ════════════════════════════════════════════
   GENERAL PLUGIN WRAPPER
   ════════════════════════════════════════════ */

.ba-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 10px;
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */

.ba-btn-primary {
    display: inline-block;
    padding: 10px 22px;
    background: var(--ba-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.ba-btn-primary:hover { background: var(--ba-primary-hover); color: #fff; }

/* Secondary button (admin "Vormerken") */
.ba-btn-secondary {
    display: inline-block;
    background: #fff;
    color: var(--ba-primary);
    border: 2px solid var(--ba-primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.15s, color 0.15s;
}
.ba-btn-secondary:hover {
    background: var(--ba-primary);
    color: #fff;
}

/* Extra-small icon buttons used in the timetable reserved-slot actions */
.ba-btn-xs {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 12px;
    cursor: pointer;
    line-height: 1.4;
    transition: background 0.1s;
}
.ba-btn-xs:hover { background: #fff; }

.ba-btn-danger { border-color: rgba(200,50,50,0.3); }
.ba-btn-danger:hover { background: #fee; }

/* ════════════════════════════════════════════
   WEEK NAVIGATION
   ════════════════════════════════════════════ */

.ba-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: nowrap;
    min-height: 42px;
}

.ba-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ba-nav-left,
.ba-nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}
.ba-nav-right { justify-content: flex-end; }

/* "Meine Buchungen" 3-D press button */
.ba-wrap .ba-nav-left .ba-my-bookings-btn,
.ba-wrap .ba-nav-left .ba-my-bookings-btn:link,
.ba-wrap .ba-nav-left .ba-my-bookings-btn:visited {
    --button_radius: 0.75em;
    --button_color: #e8e8e8;
    --button_outline_color: var(--ba-primary);
    font-size: 17px !important;
    font-weight: bold !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: var(--button_radius) !important;
    background: var(--button_outline_color) !important;
    font-family: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    display: inline-block !important;
}
.ba-wrap .ba-nav-left .ba-my-bookings-btn .button_top {
    display: block !important;
    box-sizing: border-box !important;
    border: 2px solid var(--button_outline_color) !important;
    border-radius: var(--button_radius) !important;
    padding: 0.75em 1.5em !important;
    background: var(--button_color) !important;
    color: var(--button_outline_color) !important;
    transform: translateY(-0.2em) !important;
    transition: transform 0.1s ease !important;
    white-space: nowrap !important;
    font-size: 17px !important;
    font-weight: bold !important;
    text-decoration: none !important;
}
.ba-wrap .ba-nav-left .ba-my-bookings-btn:hover .button_top  { transform: translateY(-0.33em) !important; }
.ba-wrap .ba-nav-left .ba-my-bookings-btn:active .button_top { transform: translateY(0) !important; }

.ba-nav-btn {
    background: #fff;
    border: 1px solid var(--ba-border);
    border-radius: 6px;
    font-size: 26px;
    line-height: 1;
    padding: 2px 14px;
    cursor: pointer;
    color: var(--ba-primary);
    font-weight: 700;
    transition: background 0.15s;
}
.ba-nav-btn:hover {
    background: var(--ba-accent-light);
    border-color: var(--ba-accent);
}

.ba-week-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--ba-primary);
    min-width: 280px;
    text-align: center;
}

/* ════════════════════════════════════════════
   TIMETABLE GRID
   ════════════════════════════════════════════ */

.ba-timetable-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 2px solid var(--ba-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.ba-timetable {
    display: flex;
    flex-direction: column;
    min-width: 700px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Rows */
.ba-tt-row {
    display: grid;
    grid-template-columns: 64px repeat(7, 1fr);
    border-bottom: 1px solid var(--ba-border);
}
.ba-tt-row:last-child { border-bottom: none; }

/* Header row */
.ba-tt-header-row {
    background: var(--ba-primary);
    border-bottom: 2px solid var(--ba-primary-hover);
}
.ba-tt-corner { background: var(--ba-primary-hover); }
.ba-tt-day-header {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    padding: 12px 4px;
    border-left: 1px solid rgba(255,255,255,0.2);
    line-height: 1.4;
}
.ba-tt-day-header span { font-weight: 400; font-size: 11px; opacity: 0.8; }
.ba-tt-today-header { background: var(--ba-accent); }

/* Time label column */
.ba-tt-time-cell {
    font-size: 12px;
    color: #555;
    text-align: center;
    padding: 8px 4px;
    background: #f4f6f9;
    border-right: 2px solid var(--ba-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Generic slot cell */
.ba-tt-cell {
    min-height: 44px;
    border-left: 1px solid var(--ba-border);
    padding: 3px;
    position: relative;
    transition: background 0.12s;
    overflow: hidden;
}

/* Free / clickable slot */
.ba-tt-free { cursor: pointer; background: #fff; }
.ba-tt-free:hover { background: var(--ba-free-hover); }

/* Past slot */
.ba-tt-past { background: var(--ba-past); cursor: default; }

/* ── Booked slot ── */
.ba-tt-booked {
    background: var(--ba-accent-light);
    cursor: default;
    padding: 0;
    border-left: 1px solid var(--ba-border);
    border-bottom: none; /* hide divider between consecutive booked slots */
}
.ba-tt-booked.ba-tt-booked-last { border-bottom: 1px solid var(--ba-border); }

.ba-tt-booking-info {
    background: var(--ba-accent);
    padding: 6px 8px;
    height: 100%;
    min-height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 6px 6px 0 0; /* rounded only on the first slot */
}
.ba-tt-booking-continuation {
    background: var(--ba-accent);
    height: 100%;
    min-height: 42px;
    border-radius: 0;
    margin-top: -1px; /* seamless join with the slot above */
}

/* Last slot: round bottom corners */
.ba-tt-booked.ba-tt-booked-last .ba-tt-booking-continuation,
.ba-tt-booked.ba-tt-booked-last .ba-tt-booking-info {
    border-radius: 0 0 6px 6px;
}

/* Single-slot booking: all corners rounded */
.ba-tt-booked.ba-tt-booked-first.ba-tt-booked-last .ba-tt-booking-info {
    border-radius: 6px;
}

.ba-tt-booking-time {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: block;
    line-height: 1.3;
    margin-bottom: 10px;
}
.ba-tt-booking-user    { color: rgba(255,255,255,0.95); font-size: 10px; display: block; line-height: 1.3; }
.ba-tt-booking-project {
    color: #fff;
    font-size: 12px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* ── Reserved slot ── */
.ba-tt-reserved {
    background: var(--ba-reserve-back);
    cursor: default;
    padding: 0;
    border-left: 1px solid var(--ba-border);
    border-bottom: none;
}
.ba-tt-reserved-first { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.ba-tt-reserved-last  { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.ba-tt-reserved.ba-tt-reserved-last { border-bottom: 1px solid var(--ba-border); }

.ba-tt-reserved-info {
    background: var(--ba-reserve-back);
    padding: 6px 8px;
    height: 100%;
    min-height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 6px 6px 0 0;
}
.ba-tt-reserved-continuation {
    background: var(--ba-reserve-back);
    height: 100%;
    min-height: 42px;
    border-radius: 0;
    margin-top: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Last reserved slot: round bottom corners */
.ba-tt-reserved.ba-tt-reserved-last .ba-tt-reserved-continuation,
.ba-tt-reserved.ba-tt-reserved-last .ba-tt-reserved-info {
    border-radius: 0 0 6px 6px;
}

/* Single reserved slot: all corners rounded */
.ba-tt-reserved.ba-tt-reserved-first.ba-tt-reserved-last .ba-tt-reserved-info {
    border-radius: 6px;
}

/* Admin action buttons inside a reserved slot */
.ba-tt-reserved-actions {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 4px;
}

/* ════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════ */

.ba-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ba-modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    border-top: 4px solid var(--ba-primary);
}
.ba-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}
.ba-modal-close:hover { color: #333; }
.ba-modal-box h3 {
    margin: 0 0 16px;
    font-size: 18px;
    color: var(--ba-primary);
}

/* ════════════════════════════════════════════
   FORMS (booking modal, auth page)
   ════════════════════════════════════════════ */

#booking-app-form label,
#ba-edit-form label,
.booking-app-wrap label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin: 12px 0 4px;
}

#booking-app-form input[type="text"],
#booking-app-form input[type="date"],
#booking-app-form input[type="email"],
#booking-app-form input[type="password"],
#booking-app-form select,
#ba-edit-form input[type="text"],
#ba-edit-form select,
.booking-app-wrap input[type="text"],
.booking-app-wrap input[type="date"],
.booking-app-wrap input[type="email"],
.booking-app-wrap input[type="password"],
.booking-app-wrap select {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--ba-border);
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.15s;
    color: #222;
}

#booking-app-form input:focus,
#booking-app-form select:focus,
#ba-edit-form input:focus,
#ba-edit-form select:focus,
.booking-app-wrap input:focus,
.booking-app-wrap select:focus {
    outline: none;
    border-color: var(--ba-accent);
    box-shadow: 0 0 0 3px rgba(45,107,191,0.12);
}

/* Login page hint */
.ba-login-notice {
    text-align: center;
    padding: 16px;
    background: #eef4ff;
    border: 1px solid #b8d0f0;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ── Auth page ── */
.booking-app-wrap {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
}
#booking-app-register-form input,
#booking-app-login-form input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--ba-border);
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 10px;
}
#booking-app-register-form input:focus,
#booking-app-login-form input:focus {
    outline: none;
    border-color: var(--ba-accent);
    box-shadow: 0 0 0 3px rgba(45,107,191,0.12);
}
#booking-app-register-form button,
#booking-app-login-form button {
    width: 100%;
    padding: 10px;
    background: var(--ba-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s;
}
#booking-app-register-form button:hover,
#booking-app-login-form button:hover { background: var(--ba-primary-hover); }

/* ════════════════════════════════════════════
   BOOKING LIST TABLE (.booking-app-table)
   ════════════════════════════════════════════ */

/* Used on the /meine-buchungen page inside .ba-all-bookings-wrap */
.ba-all-bookings-wrap .ba-my-bookings,
.ba-all-users-bookings {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 24px 28px;
    margin-bottom: 32px;
}

.ba-all-bookings-wrap h2 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--ba-primary);
    border-bottom: 2px solid #e8ecf2;
    padding-bottom: 10px;
}

/* Admin hint text below the section heading */
.ba-admin-hint {
    color: #666;
    font-size: 13px;
    margin: -8px 0 16px;
}

.booking-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.booking-app-table thead tr { background: #f0f4fa; }
.booking-app-table th {
    text-align: left;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--ba-primary);
    border-bottom: 2px solid #dce3ee;
}
.booking-app-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #edf0f5;
    vertical-align: middle;
}
.booking-app-table tbody tr:last-child td { border-bottom: none; }
.booking-app-table tbody tr:hover { background: #f8fafd; }

/* Email sub-line in the admin user column */
.ba-user-col small { color: #888; font-size: 12px; display: block; margin-top: 2px; }

/* Admin bookings section: amber left border to distinguish from own bookings */
.ba-all-users-bookings { border-left: 4px solid #e8a100; }
.ba-all-users-bookings h2 { color: #8a6000; border-bottom-color: #f5dfa0; }

/* ── Table action buttons ── */
.ba-action-btns {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
}

/* Edit button – blue */
.booking-app-edit,
.ba-edit-btn {
    background: var(--ba-primary);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, opacity 0.15s;
}
.booking-app-edit:hover:not(:disabled),
.ba-edit-btn:hover:not(:disabled) { background: var(--ba-primary-hover); }
.booking-app-edit:disabled,
.ba-edit-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Cancel button – red outline (destructive action, intentionally different from blue theme) */
.booking-app-cancel,
.ba-cancel-btn {
    background: #fff;
    color: var(--ba-cancel);
    border: 1px solid var(--ba-cancel);
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, opacity 0.15s;
}
.booking-app-cancel:hover:not(:disabled),
.ba-cancel-btn:hover:not(:disabled) { background: var(--ba-cancel); color: #fff; }
.booking-app-cancel:disabled,
.ba-cancel-btn:disabled { opacity: 0.4; cursor: not-allowed; background: #fff; color: var(--ba-cancel); }

/* ── Status badges ── */
.ba-status-reserved { color: #999; font-size: 12px; }

/* Also used in the timetable booking list */
.ba-my-bookings { margin-top: 30px; }
.ba-my-bookings h3 { font-size: 16px; color: var(--ba-primary); margin-bottom: 10px; }


/* LEGAL */
.ba-legal-wrap {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.ba-legal-wrap h1 {
    margin-bottom: 20px;
}

.ba-legal-wrap h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.ba-legal-wrap h3 {
    margin-top: 20px;
    margin-bottom: 8px;
}

.ba-legal-wrap p {
    margin-bottom: 15px;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

@media (max-width: 700px) {
    .booking-app-table              { font-size: 12px; }
    .booking-app-table th,
    .booking-app-table td           { padding: 8px 6px; }
    .ba-edit-btn, .ba-cancel-btn    { padding: 4px 8px; font-size: 12px; }
}

@media (max-width: 600px) {
    .ba-header-inner    { gap: 12px; padding: 0 12px; }
    .ba-logo            { font-size: 16px; }
    .ba-nav-links       { gap: 2px; }
    .ba-nav-link        { padding: 5px 8px; font-size: 13px; }
    .ba-header-username { display: none; }
    .ba-footer-inner    { flex-direction: column; text-align: center; }
    .ba-modal-box       { padding: 20px 16px; }
    .ba-week-label      { font-size: 13px; min-width: 180px; }
    .ba-nav-wrapper     { flex-direction: column; gap: 10px; }
    .ba-my-bookings-btn { width: 100%; text-align: center; }
}
