
    /* Bootstrap compatibility layer for inner pages */
    .page-book-appointment {
        display: flex;
        justify-content: center;
        padding: 60px 0 80px;
        background: #FAFAFA;
    }

    .page-book-appointment > .container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 24px;
        width: 100%;
    }

    .page-book-appointment .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -16px;
        margin-right: -16px;
    }

    .page-book-appointment .row > [class*="col-"] {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
    }

    .page-book-appointment .col-md-12,
    .page-book-appointment .col-lg-12,
    .page-book-appointment .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    @media (min-width: 992px) {
        .page-book-appointment .col-lg-7 {
            flex: 0 0 58.333%;
            max-width: 58.333%;
        }

        .page-book-appointment .col-lg-5 {
            flex: 0 0 41.667%;
            max-width: 41.667%;
        }
    }

    @media (min-width: 1200px) {
        .page-book-appointment .col-xl-8 {
            flex: 0 0 66.667%;
            max-width: 66.667%;
        }

        .page-book-appointment .col-xl-4 {
            flex: 0 0 33.333%;
            max-width: 33.333%;
        }
    }

    .page-book-appointment .d-flex {
        display: flex !important;
    }

    .page-book-appointment .justify-content-between {
        justify-content: space-between !important;
    }

    .page-book-appointment .align-items-center {
        align-items: center !important;
    }

    .page-book-appointment .fw-bold {
        font-weight: 600 !important;
    }

    .page-book-appointment .text-center {
        text-align: center !important;
    }

    .page-book-appointment .mt-3 {
        margin-top: 1rem !important;
    }

    .page-book-appointment .mt-4 {
        margin-top: 1.5rem !important;
    }

    .page-book-appointment .mb-2 {
        margin-bottom: 0.5rem !important;
    }

    .page-book-appointment .mb-3 {
        margin-bottom: 1rem !important;
    }

    .page-book-appointment .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .page-book-appointment .py-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .page-book-appointment .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid transparent;
        border-radius: 6px;
        background-color: #f1f3f5;
        color: #1c1c1c;
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.5;
        padding: 0.4rem 0.85rem;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: center;
        text-decoration: none;
    }

    .page-book-appointment .btn:hover {
        background-color: #e9ecef;
    }

    .page-book-appointment .btn-sm {
        padding: 0.25rem 0.65rem;
        font-size: 0.75rem;
    }

    .page-book-appointment .btn-secondary {
        background-color: #e9ecef;
        border-color: #dfe3e6;
        color: #1c1c1c;
    }

    .page-book-appointment .btn-secondary:hover {
        background-color: #dfe3e6;
    }

    .page-book-appointment .alert {
        position: relative;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        border: 1px solid transparent;
        font-size: 0.95rem;
    }

    .page-book-appointment .alert-info {
        color: #055160;
        background-color: #cff4fc;
        border-color: #b6effb;
    }

    .page-book-appointment .form-group {
        margin-bottom: 1.5rem;
    }

    .page-book-appointment .form-control {
        width: 100%;
        padding: 0.65rem 0.9rem;
        border-radius: 6px;
        border: 1px solid #ced4da;
        font-size: 0.95rem;
        background-color: #fff;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .page-book-appointment .form-control:focus {
        border-color: var(--theme-color, #1c1c1c);
        outline: none;
        box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.08);
    }

    .page-book-appointment .form-check {
        display: flex;
        align-items: flex-start;
        gap: 0.65rem;
        margin-bottom: 0.75rem;
    }

    .page-book-appointment .form-check-input {
        width: 1.1rem;
        height: 1.1rem;
        margin-top: 0.1rem;
        border: 1px solid #adb5bd;
        border-radius: 50%;
        appearance: none;
        background-color: #fff;
        position: relative;
        cursor: pointer;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .page-book-appointment .form-check-input:checked {
        border-color: var(--theme-color, #1c1c1c);
        background-color: var(--theme-color, #1c1c1c);
    }

    .page-book-appointment .form-check-input:checked::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 50%;
        background-color: #fff;
        transform: translate(-50%, -50%);
    }

    .page-book-appointment .form-check-label {
        font-size: 0.95rem;
        color: #333;
        line-height: 1.4;
        cursor: pointer;
    }

    .page-book-appointment .hidden {
        display: none !important;
    }

    /* Terms and Conditions Checkbox - Distinct styling from payment options */
    .terms-checkbox-wrapper {
        margin-top: 10px;
    }

    .terms-checkbox-input {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 20px !important;
        height: 20px !important;
        border: 2px solid rgba(213, 190, 198, 1) !important;
        border-radius: 4px !important;
        background-color: #fff !important;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .terms-checkbox-input:hover {
        border-color: rgba(229, 0, 80, 0.7) !important;
    }

    .terms-checkbox-input:checked {
        background-color: rgba(229, 0, 80, 1) !important;
        border-color: rgba(229, 0, 80, 1) !important;
    }

    .terms-checkbox-input:checked::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        line-height: 1;
    }

    .terms-checkbox-input.is-invalid {
        border-color: #dc3545 !important;
    }

    .terms-checkbox-label {
        user-select: none;
    }

    .page-book-appointment .h3 {
        font-size: 1.35rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .page-book-appointment .text-muted {
        color: #6c757d !important;
    }

    .page-book-appointment .w-100 {
        width: 100% !important;
    }

    .page-book-appointment .gap-2 {
        gap: 0.5rem !important;
    }

    .page-book-appointment .rounded-circle {
        border-radius: 50% !important;
    }

    .page-book-appointment .shadow-sm {
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    }

    .page-book-appointment .badge {
        display: inline-block;
        padding: 0.35em 0.65em;
        border-radius: 10rem;
        background-color: #1c1c1c;
        color: #fff;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .page-book-appointment .position-relative {
        position: relative !important;
    }

    .page-book-appointment .position-absolute {
        position: absolute !important;
    }

    .page-book-appointment .top-0 {
        top: 0 !important;
    }

    .page-book-appointment .start-50 {
        left: 50% !important;
    }

    .page-book-appointment .translate-middle {
        transform: translate(-50%, -50%) !important;
    }

    @media (max-width: 767.98px) {
        .page-book-appointment .row > [class*="col-"] {
            padding-left: 10px;
            padding-right: 10px;
        }

        .page-book-appointment > .container {
            padding: 0 18px;
        }

        /* Ensure agent schedule container doesn't overflow on mobile */
        #agentSchedule {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        /* Ensure period selector fits on mobile */
        .period-selector {
            width: calc(100% - 36px);
            max-width: 100%;
            margin: 12px auto;
            box-sizing: border-box;
        }
    }

    /* Prevent Bootstrap CSS from affecting header/footer */
    .nav-header-section,
    .nav-header-section *,
    footer,
    footer * {
        box-sizing: border-box !important;
    }

    /* Ensure modals work properly */
    .modal {
        z-index: 1055;
    }

    .modal-backdrop {
        z-index: 1050;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .service-details-box {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 20px;
        border: 1px solid #e9ecef;
    }

    .service-details-box label {
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        display: block;
    }

    .service-details-box input[readonly] {
        background-color: #fff;
        color: #333;
        font-weight: 500;
    }

    .booking-days-buttons {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 15px;
        margin-top: 15px;
        margin-bottom: 20px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 10px;
        border: 1px solid #e9ecef;
    }

    .day-btn {
        position: relative;
        padding: 15px 10px;
        border: 2px solid #e9ecef;
        background: #fff;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        overflow: hidden;
    }

    .day-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--theme-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .day-btn span {
        display: block;
        font-weight: 600;
        font-size: 14px;
        color: #333;
        transition: all 0.3s ease;
    }

    .day-btn:hover {
        border-color: var(--theme-color);
        transform: translateY(-2px);
    }

    .day-btn:hover::before {
        transform: scaleX(1);
    }

    .day-btn:hover span {
        color: var(--theme-color);
    }

    .day-btn.active {
        background: var(--theme-color);
        border-color: var(--theme-color);
        transform: translateY(-2px);
    }

    .day-btn.active::before {
        transform: scaleX(1);
        background: #fff;
    }

    .day-btn.active span {
        color: #fff;
    }

    @media (max-width: 991px) {
        .booking-days-buttons {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 575px) {
        .booking-days-buttons {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    textarea.form-control {
        resize: vertical;
        min-height: 100px;
    }

    .form-label {
        font-weight: 700;
        color: rgba(44, 13, 24, 1);
        margin-bottom: 18px;
        display: block;
    }

    @media (max-width: 768px) {
        .booking-days-buttons {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Service summary card (left side) */
    .service-summary-card {
        border: 1px solid rgba(213, 190, 198, 1);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        /* previously sticky; make it normal so it scrolls with the page */
        position: static;
    }
    .service-summary-card .card-cover img {
        border-radius : 20px;
        display: block;
        width: 100%;
        height: 220px; /* fixed so it doesn't stretch with form */
        object-fit: cover;
    }
    .card-cover{
        padding: 30px 30px 0 30px;
    }
    .service-summary-card .card-body {
        padding: 20px 30px 20px;
    }
    .service-summary-title {
        margin: 0 0 6px 0;
        font-size: 30px;
        font-weight: 700;
        text-transform: capitalize;
        color: #1c1c1c;
    }
    .service-summary-price {
        font-size:18px;
        margin: 0 0 10px 0;
        font-weight: 700;
        color: #1c1c1c;
    }
    .service-summary-price .old-price {
        color: #999;
        text-decoration: line-through;
        margin-left: 8px;
        font-weight: 400;
    }
    .service-summary-desc {
        margin: 0;
        color: #555;
        line-height: 1.5;
    }

    /* Agents horizontal avatars */
    .agent-avatars {
        display: flex;
        justify-content: center;
        gap: 16px;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
        margin-top: 6px;
        /* Hide scrollbar but keep scrolling functionality */
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .agent-avatars::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    .agent-avatar {
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        min-width: 84px;
        user-select: none;
    }
    .agent-avatar .avatar-img {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 1px solid #e9ecef;
        object-fit: cover;
        transition: border-color 0.2s ease, transform 0.2s ease;
    }
    .agent-avatar.active .avatar-img {
        border-color: #e50050;
        transform: translateY(-2px);
    }
    .agent-avatar .agent-name {
        margin-top: 8px;
        font-size: 14px;
        font-weight:500;
        color: #333;
        text-align: center;
        max-width: 80px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Weekly calendar header */
    #weekDisplay {
        font-weight: 700;
        letter-spacing: 0.06em;
        color: rgba(77, 38, 64, 0.85);
        text-align: center;
        font-size: 18px;
        margin-bottom: 18px;
    }

    /* .calendar-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-bottom: 24px;
    } */

    .calendar-arrow {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: transparent;
        color: #ff2d2dff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .calendar-arrow:hover:not(:disabled) {
        color: #c71a6a;
        transform: translateY(-1px);
    }

    .calendar-arrow:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    .calendar-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 55px;
        margin-bottom: 24px;
    }

    .days-header {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: center;
        overflow-x: auto;
        padding: 6px 2px 10px;
    }

    .day-column {
        min-width: 84px;
        background: #fff4f8;
        border-radius: 10px;
        padding: 40px 0 40px;
        text-align: center;
        transition: all 0.25s ease;
        color: rgba(77, 38, 64, 0.75);
        font-weight: 600;
        border: 2px solid rgba(213, 190, 198, 0.9);
        position: relative;
    }

    .day-column .day-name {
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .day-column .day-date {
        font-size: 16px;
        font-weight: 700;
        color: rgba(77, 38, 64, 0.85);
    }

    .day-column::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 12px;
        transform: translateX(-50%);
        width: 28px;
        height: 6px;
        border-radius: 999px;
        background: rgba(229, 0, 80, 1);
        transition: all 0.2s ease;
    }

    .day-column:hover {
        border-color: rgba(255, 45, 139, 0.35);
        transform: translateY(-1px);
        color: rgba(77, 38, 64, 0.95);
    }

    .day-column.active {
        background: rgba(229, 0, 80, 1);
        border-color: rgba(229, 0, 80, 1);
        color: #fff;
        transform: translateY(-2px);
    }

    .day-column.active .day-name,
    .day-column.active .day-date {
        color: #fff;
    }

    .day-column.active::after {
        background: #fff;
        width: 30px;
    }

    /* Period Selector - Segmented Button Style */
    .period-selector {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        margin: 12px auto;
        padding: 4px;
        background: rgba(213, 190, 198, 0.5);
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        width: fit-content;
    }

    .period-btn {
        min-width: 140px;
        padding: 12px 20px;
        background: transparent;
        border-radius: 8px;
        text-align: center;
        transition: all 0.25s ease;
        color: rgba(77, 38, 64, 0.75);
        font-weight: 500;
        font-size: 14px;
        border: none;
        cursor: pointer;
        position: relative;
        outline: none;
    }

    .period-btn:hover {
        color: rgba(77, 38, 64, 0.95);
        background: rgba(255, 255, 255, 0.5);
    }

    .period-btn.active {
        background: #fff4f8;
        color: rgba(118, 33, 62, 1);
        box-shadow: 0 2px 8px rgba(229, 0, 80, 0.2);
    }

    .period-btn.active::after {
        display: none;
    }

    @media (max-width: 768px) {
        .period-selector {
            flex-direction: row;
            gap: 0;
            width: 100%;
            max-width: 100%;
            padding: 3px;
            margin: 12px 0;
            background: rgba(213, 190, 198, 0.3);
        }

        .period-btn {
            min-width: 0;
            flex: 1;
            padding: 10px 8px;
            font-size: 12px;
        }
        
        .period-btn.active {
            background: #fff4f8;
            color: rgba(118, 33, 62, 1);
        }
    }

    @media (max-width: 768px) {
        .calendar-strip {
            width: 100%;
            gap: 14px;
        }

        .calendar-strip .calendar-arrow {
            flex-shrink: 0;
        }

        .days-header {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            padding: 0;
            overflow: visible;
        }

        .day-column {
            min-width: 0;
        }

        .days-header .day-column:nth-child(n + 4) {
            display: none;
        }
    }
    
    /* Time slots strip wrapper with navigation arrows */
    .time-slots-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
    }

    @media (max-width: 768px) {
        .time-slots-strip {
            gap: 6px;
            margin-top: 16px;
            padding: 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .time-slot-arrow {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }
    }

    /* Time slot navigation arrows */
    .time-slot-arrow {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: transparent;
        color: #ff2d2dff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .time-slot-arrow:hover:not(:disabled) {
        color: #c71a6a;
        transform: translateY(-1px);
    }

    .time-slot-arrow:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    /* Horizontal scrollable time slots container */
    .time-slots-container {
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 0 10px;
        overflow-x: auto;
        overflow-y: hidden;
        align-items: center;
        justify-content: center;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        flex: 1;
        /* Show approximately 6 slots at a time (6 * 110px + gaps) */
        max-width: calc(6 * 110px + 5 * 10px);
        width: calc(6 * 110px + 5 * 10px);
        min-height: 60px;
        /* Hide scrollbar completely but keep scrolling functionality */
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    @media (max-width: 768px) {
        .time-slots-container {
            max-width: calc(100% - 68px);
            width: calc(100% - 68px);
            padding: 0 4px;
            gap: 6px;
            flex: 1 1 auto;
            min-width: 0;
            box-sizing: border-box;
        }
    }
    
    /* Center message when no slots (only affects non-slot divs) */
    .time-slots-container > div:not(.time-slot) {
        width: 100%;
        text-align: center;
        display: block;
    }

    /* Hide scrollbar completely but keep scrolling functionality */
    .time-slots-container::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    /* Horizontal time slot items */
    .time-slot {
        flex-shrink: 0;
        min-width: 100px;
        padding: 10px 12px;
        text-align: center;
        background-color: #fff4f8;
        border-radius: 6px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 1px solid #d5bec6;
    }

    @media (max-width: 768px) {
        .time-slot {
            min-width: 90px;
            padding: 8px 10px;
            font-size: 11px;
        }
    }
    
    .time-slot:hover {
        background-color: #e9ecef;
        transform: translateY(-2px);
    }
    
    .time-slot.selected {
        background-color: rgba(229, 0, 80, 1);
        color: white;
        border-color: var(--theme-color);
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .time-slot.unavailable {
        display: none;
    }
    
    /* Mobile Time Slots Container - 3 Column Layout */
    .mobile-time-slots-container {
        margin-top: 12px;
        width: 100%;
        padding: 0;
    }
    
    .mobile-slots-columns-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
    }
    
    .mobile-period-column {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .mobile-period-slots {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .mobile-time-slot {
        padding: 12px 16px;
        background-color: #fff4f8;
        border-radius: 6px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 1px solid #d5bec6;
        text-align: center;
        font-weight: 500;
        color: rgba(77, 38, 64, 0.85);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-time-slot:hover {
        background-color: #ffe9f0;
        border-color: rgba(229, 0, 80, 0.5);
        transform: translateY(-1px);
    }
    
    .mobile-time-slot.selected {
        background-color: rgba(229, 0, 80, 1);
        color: white;
        border-color: rgba(229, 0, 80, 1);
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(229, 0, 80, 0.3);
    }
    
    .mobile-period-no-slots {
        padding: 12px;
        text-align: center;
        color: #999;
        font-size: 14px;
        font-style: italic;
    }
    
    .mobile-no-slots {
        padding: 20px;
        text-align: center;
        color: #666;
        font-size: 14px;
    }
    
    /* See More Button */
    .mobile-see-more-btn {
        width: 100%;
        margin-top: 16px;
        padding: 12px;
        background: transparent;
        border: none;
        color: rgba(229, 0, 80, 1);
        font-size: 14px;
        font-weight: 500;
        text-decoration: underline;
        cursor: pointer;
        text-align: center;
        transition: color 0.2s ease;
    }
    
    .mobile-see-more-btn:hover {
        color: rgba(229, 0, 80, 0.8);
    }
    
    .mobile-see-more-btn:active {
        color: rgba(229, 0, 80, 0.6);
    }
    
    /* Hide mobile container on desktop */
    @media (min-width: 769px) {
        .mobile-time-slots-container {
            display: none !important;
        }
    }
    
    /* Show mobile container only on mobile */
    @media (max-width: 768px) {
        .mobile-time-slots-container {
            display: block;
        }
        
        /* Hide desktop time slots strip on mobile when mobile container is visible */
        .mobile-time-slots-container:not([style*="display: none"]) ~ .time-slots-strip,
        .mobile-time-slots-container[style*="display: block"] ~ .time-slots-strip {
            display: none !important;
        }
    }
    
    .footer-section ul{
        padding-left:initial!important;
    }

    /* Layout fixes: ensure right form column doesn't get vertically centered
       or add large top/bottom whitespace when left column grows */
    .page-book-appointment .row { align-items: flex-start !important; }
    /* Keep uniform padding so top/bottom match left/right */
    .appointment-form { min-height: unset !important; height: auto !important; display: block !important; padding: 24px !important; }
    
    /* Highlight today's date in the schedule */
    /* .day-column.today:not(.active) {
        border-color: rgba(255, 45, 139, 0.35);
        background: rgba(255, 45, 139, 0.08);
        color: rgba(255, 45, 139, 0.85);
    } */

    /* .day-column.today:not(.active)::after {
        background: rgba(255, 45, 139, 0.4);
    }

    .day-column.today:not(.active) .day-name,
    .day-column.today:not(.active) .day-date {
        color: rgba(255, 45, 139, 0.85);
    } */
    /* 
    .day-slots-column.today {
        background-color: rgba(255, 45, 139, 0.06);
        border-left: 2px solid rgba(255, 45, 139, 0.25);
        border-right: 2px solid rgba(255, 45, 139, 0.25);
    }
     */
    /* User info summary styling */
    .user-info-summary {
        background-color: #f8f9fa;
        border-left: 4px solid var(--theme-color);
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 5px;
    }
    
    .user-info-summary h5 {
        color: var(--theme-color);
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .user-info-summary p {
        margin-bottom: 5px;
        font-size: 14px;
    }
    
    .user-info-summary p:last-child {
        margin-bottom: 0;
    }
