        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            /* Primary color from server template, refined later by shared.js */
            --primary: var(--theme-color, #DC143C);
            --primary-dark: #B01030;
            --primary-light: #F5A0B0;
            --secondary: #1a1a1a;
            --accent: #F8D7DA;
            --accent-light: #FFF0F2;
            --bg: #FFFFFF;
            --card: #FFFFFF;
            --text: #2d2d2d;
            --text-light: #6b6b6b;
            --border: #E5E5E5;
            --success: #4CAF50;
            --warning: #FFC107;
            --error: #dc3545;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #FAF9F6 0%, #F5F5F5 100%);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            padding-bottom: 100px;
        }
        
        .container { max-width: 500px; margin: 0 auto; padding: 15px; }
        
        /* Header - Compact */
        .header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 15px 20px;
            text-align: center;
            color: white;
            border-radius: 0 0 20px 20px;
            margin-bottom: 10px;
        }
        .header-profile {
            display: flex;
            align-items: center;
            gap: 14px;
            justify-content: center;
        }
        .profile-info {
            text-align: left;
        }
        .profile-name {
            font-size: 1.15rem;
            font-weight: 700;
        }

        .header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 3px;
        }

        .header .welcome {
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .header .phone {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-top: 2px;
        }

        /* Customer Avatar */
        .avatar-container {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0;
            cursor: pointer;
            flex-shrink: 0;
        }
        .avatar-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,255,255,0.8);
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .avatar-placeholder {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            border: 3px dashed rgba(255,255,255,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: rgba(255,255,255,0.8);
            font-weight: 700;
        }
        .avatar-edit-icon {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            box-shadow: 0 1px 4px rgba(0,0,0,0.3);
        }
        
        /* Card */
        .card {
            background: var(--card);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 15px;
        }
        
        .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Rewards Section */
        .rewards-card {
            background: linear-gradient(135deg, #FFF8E1, #FFECB3);
            border: 2px solid #FFD54F;
        }

        /* Favorite Colors */
        .color-card {
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #f8f9fa, #fff);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 12px 14px;
            margin-bottom: 8px;
            transition: all 0.2s;
        }
        .color-card:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        /* Color swatch circle */
        .color-swatch {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            flex-shrink: 0;
            border: 2px solid rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        /* Finish type effects on swatch */
        .color-swatch.finish-glitter::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.8) 1px, transparent 1px),
                        radial-gradient(circle at 75% 20%, rgba(255,255,255,0.6) 1px, transparent 1px),
                        radial-gradient(circle at 50% 60%, rgba(255,255,255,0.7) 1px, transparent 1px),
                        radial-gradient(circle at 20% 70%, rgba(255,255,255,0.5) 1px, transparent 1px),
                        radial-gradient(circle at 80% 75%, rgba(255,255,255,0.6) 1px, transparent 1px),
                        radial-gradient(circle at 60% 35%, rgba(255,255,255,0.9) 1px, transparent 1px),
                        radial-gradient(circle at 35% 45%, rgba(255,255,255,0.4) 1px, transparent 1px);
            background-size: 100% 100%;
        }

        .color-swatch.finish-shimmer::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
            animation: shimmerEffect 2s ease-in-out infinite;
        }
        @keyframes shimmerEffect {
            0%, 100% { opacity: 0.3; transform: translateX(-50%) rotate(0deg); }
            50% { opacity: 1; transform: translateX(50%) rotate(5deg); }
        }

        .color-swatch.finish-cat-eye::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, transparent 35%, rgba(255,255,255,0.6) 45%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.6) 55%, transparent 65%);
        }

        .color-swatch.finish-chrome::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.5) 70%, rgba(255,255,255,0.1) 100%);
        }

        .color-swatch.finish-ombre::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.6) 100%);
        }

        .color-swatch.finish-matte {
            filter: saturate(0.7) brightness(0.95);
            border-color: rgba(0,0,0,0.15);
        }

        .color-swatch.finish-french {
            background: linear-gradient(to bottom, white 0%, white 35%, transparent 35%) !important;
        }

        .color-swatch.finish-marble::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background:
                radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.5) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.4) 0%, transparent 40%),
                radial-gradient(ellipse at 50% 80%, rgba(255,255,255,0.3) 0%, transparent 45%);
        }

        .color-swatch.finish-magnetic::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 3px,
                rgba(255,255,255,0.3) 3px,
                rgba(255,255,255,0.3) 5px
            );
        }

        .color-card-info {
            flex: 1;
            min-width: 0;
        }
        .color-card-name {
            font-weight: 600;
            color: #333;
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .color-card-type {
            font-size: 0.75rem;
            color: #888;
            margin-top: 2px;
        }
        .color-card-delete {
            background: none;
            border: none;
            color: #bbb;
            font-size: 1.3rem;
            cursor: pointer;
            padding: 4px 6px;
            flex-shrink: 0;
            transition: color 0.2s;
        }
        .color-card-delete:hover {
            color: #dc3545;
        }

        /* Add Color Modal extras */
        .color-picker-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 12px 0;
        }
        .color-picker-row input[type="color"] {
            width: 44px;
            height: 44px;
            border: 2px solid var(--border);
            border-radius: 10px;
            padding: 2px;
            cursor: pointer;
            background: none;
        }
        .color-picker-row input[type="text"] {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 0.9rem;
            font-family: monospace;
        }
        .finish-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin: 10px 0 16px 0;
        }
        .finish-chip {
            padding: 6px 12px;
            border-radius: 20px;
            border: 2px solid var(--border);
            background: #f8f9fa;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .finish-chip:hover {
            border-color: #aaa;
        }
        .finish-chip.selected {
            background: var(--primary, #d4a574);
            border-color: var(--primary, #d4a574);
            color: white;
        }
        
        .rewards-progress {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 20px 0;
        }
        
        .progress-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #E0E0E0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        .progress-dot.filled {
            background: linear-gradient(135deg, var(--primary), #D4AF37);
            box-shadow: 0 3px 10px rgba(220, 20, 60, 0.4);
        }
        
        .progress-dot.next {
            background: transparent;
            border: 3px dashed var(--primary);
            color: var(--primary);
        }
        
        .rewards-info {
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 15px;
            margin-top: 15px;
        }
        
        .rewards-info .visits {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .rewards-info .label {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .rewards-info .next-reward {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid var(--border);
            color: var(--text);
            font-weight: 500;
        }
        
        .available-rewards {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
            padding: 15px;
            border-radius: 15px;
            text-align: center;
            margin-top: 15px;
        }
        
        .available-rewards .count {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        /* Quick Book Section */
        .suggestion-card {
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(245, 160, 176, 0.1));
            border: 2px solid var(--primary);
        }
        
        .suggestion-services {
            background: white;
            padding: 15px;
            border-radius: 12px;
            margin: 10px 0;
        }
        
        .suggestion-service {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }
        
        .suggestion-service:last-child {
            border-bottom: none;
        }
        
        .suggestion-staff {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: white;
            border-radius: 12px;
            margin-top: 10px;
        }
        
        .suggestion-staff-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .suggestion-total {
            display: flex;
            justify-content: space-between;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 2px solid var(--primary);
        }
        
        /* Upcoming Appointment Card - Compact */
        .upcoming-item {
            background: white;
            border-radius: 14px;
            padding: 14px;
            margin-bottom: 10px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
            border: 1px solid #f0f0f0;
            position: relative;
        }

        .upcoming-item.pending { border-left: 3px solid #F59E0B; }
        .upcoming-item.confirmed { border-left: 3px solid #22C55E; }
        .upcoming-item.cancelled { border-left: 3px solid #EF4444; opacity: 0.55; }

        .upcoming-topline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .upcoming-datetime {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--secondary);
        }

        .upcoming-status {
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        .upcoming-status.pending { background: #FEF3C7; color: #92400E; }
        .upcoming-status.confirmed { background: #DCFCE7; color: #166534; }
        .upcoming-status.cancelled { background: #FEE2E2; color: #991B1B; }

        .upcoming-services {
            font-size: 0.82rem;
            color: #555;
            line-height: 1.4;
        }

        .upcoming-pending-note {
            font-size: 0.75rem;
            color: #92400E;
            margin-top: 6px;
        }

        .upcoming-feedback-note {
            font-size: 0.75rem;
            color: #888;
            margin-top: 4px;
        }

        /* Guest sections inside grouped card */
        .upcoming-guest-section {
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px dashed #e5e7eb;
        }

        .upcoming-guest-label {
            margin-bottom: 2px;
        }

        .upcoming-guest-name {
            font-size: 0.78rem;
            font-weight: 600;
            color: #6B7280;
        }

        .upcoming-service-row {
            padding: 2px 0;
        }

        .upcoming-service-name {
            font-size: 0.82rem;
            color: #555;
        }

        /* Appointment action buttons */
        .apt-actions {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-top: 10px;
        }

        .apt-actions-row {
            display: flex;
            gap: 6px;
        }

        .apt-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 12px;
            border-radius: 10px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.15s;
            text-decoration: none;
            border: none;
        }

        .apt-btn:active { transform: scale(0.97); }

        .apt-btn-reschedule { background: #EEF2FF; color: #4F46E5; }
        .apt-btn-cancel { background: #FEF2F2; color: #DC2626; }
        .apt-btn-feedback { background: #FFFBEB; color: #B45309; }
        .apt-btn-calendar { background: #EEF2FF; color: #4F46E5; }
        .apt-btn-addservice { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }

        /* Cancel modal */
        .cancel-modal {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .cancel-modal.active { display: flex; }
        .cancel-modal-content {
            background: white;
            border-radius: 18px;
            max-width: 360px;
            width: 100%;
            padding: 24px;
            max-height: 80vh;
            overflow-y: auto;
        }
        .cancel-modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--text);
            margin-bottom: 4px;
        }
        .cancel-modal-subtitle {
            color: var(--text-light);
            font-size: 0.82rem;
            margin-bottom: 16px;
        }
        .cancel-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            border: 1.5px solid #e5e7eb;
            border-radius: 10px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.15s;
        }
        .cancel-option:hover { border-color: #DC2626; background: #FEF2F2; }
        .cancel-option.selected { border-color: #DC2626; background: #FEF2F2; }
        .cancel-option-check {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #d1d5db;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.15s;
        }
        .cancel-option.selected .cancel-option-check {
            border-color: #DC2626;
            background: #DC2626;
        }
        .cancel-option.selected .cancel-option-check::after {
            content: '✓';
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
        }
        .cancel-option-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text);
        }
        .cancel-option-guest {
            font-size: 0.72rem;
            color: var(--text-light);
        }
        .cancel-divider {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 12px 0;
            font-size: 0.72rem;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .cancel-divider::before, .cancel-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e5e7eb;
        }
        .cancel-modal-actions {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }
        .cancel-modal-btn {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.15s;
        }
        .cancel-modal-btn:active { transform: scale(0.97); }
        .cancel-modal-btn-back {
            background: #F3F4F6;
            color: var(--text);
        }
        .cancel-modal-btn-confirm {
            background: #DC2626;
            color: white;
        }
        .cancel-modal-btn-confirm:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* Fix Request Modal */
        .fix-modal {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .fix-modal.active { display: flex; }
        .fix-modal-content {
            background: white;
            border-radius: 18px;
            max-width: 400px;
            width: 100%;
            padding: 24px;
            max-height: 85vh;
            overflow-y: auto;
        }
        .fix-modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--text);
            margin-bottom: 4px;
        }
        .fix-modal-subtitle {
            color: var(--text-light);
            font-size: 0.82rem;
            margin-bottom: 16px;
        }
        .fix-note-input {
            width: 100%;
            min-height: 80px;
            padding: 12px;
            border: 1.5px solid #e5e7eb;
            border-radius: 10px;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            resize: vertical;
            margin-bottom: 12px;
        }
        .fix-note-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .fix-photo-area {
            border: 2px dashed #e5e7eb;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            margin-bottom: 16px;
            transition: all 0.2s;
        }
        .fix-photo-area:hover { border-color: var(--primary); background: #fafafa; }
        .fix-photo-area.has-photo {
            border-style: solid;
            border-color: var(--primary);
            padding: 8px;
        }
        .fix-photo-preview {
            max-width: 100%;
            max-height: 200px;
            border-radius: 8px;
            object-fit: contain;
        }
        .fix-photo-hint {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-top: 6px;
        }
        .fix-btn-row {
            display: flex;
            gap: 8px;
        }
        .fix-btn {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.15s;
        }
        .fix-btn:active { transform: scale(0.97); }
        .fix-btn-cancel { background: #F3F4F6; color: var(--text); }
        .fix-btn-submit { background: var(--primary); color: white; }
        .fix-btn-submit:disabled { opacity: 0.4; cursor: not-allowed; }
        .fix-request-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: #FFF7ED;
            border: 1.5px solid #FB923C;
            border-radius: 8px;
            color: #EA580C;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            transition: all 0.15s;
        }
        .fix-request-btn:hover { background: #FED7AA; }
        .fix-status-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 8px;
        }
        .fix-status-pending { background: #FEF3C7; color: #92400E; }
        .fix-status-approved { background: #D1FAE5; color: #065F46; }
        .fix-status-declined { background: #FEE2E2; color: #991B1B; }
        #fixDateStrip::-webkit-scrollbar { display: none; }
        #fixDateStrip { scrollbar-width: none; }

        /* Calendar picker modal */
        .cal-picker-modal {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .cal-picker-modal.active { display: flex; }
        .cal-picker-content {
            background: white;
            border-radius: 18px;
            max-width: 300px;
            width: 100%;
            padding: 24px;
        }
        .cal-picker-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 4px;
            text-align: center;
        }
        .cal-picker-subtitle {
            color: var(--text-light);
            font-size: 0.78rem;
            margin-bottom: 16px;
            text-align: center;
        }
        .cal-picker-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border: 1.5px solid #e5e7eb;
            border-radius: 12px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.15s;
            font-size: 0.9rem;
            font-weight: 500;
            background: white;
            width: 100%;
        }
        .cal-picker-option:hover { border-color: #4F46E5; background: #EEF2FF; }
        .cal-picker-option:active { transform: scale(0.97); }
        .cal-picker-remember {
            margin-top: 8px;
            font-size: 0.72rem;
            color: var(--text-light);
            text-align: center;
        }

        /* Booking confirmed highlight */
        .upcoming-item.just-booked {
            animation: justBookedGlow 2s ease;
        }

        @keyframes justBookedGlow {
            0% { box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.3); }
            100% { box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
        }

        /* Booking toast */
        .booking-toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            background: #1a1a1a;
            color: white;
            padding: 12px 20px;
            border-radius: 12px;
            font-size: 0.88rem;
            font-weight: 600;
            z-index: 9999;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            text-align: center;
            max-width: 90%;
        }

        .booking-toast.show {
            transform: translateX(-50%) translateY(0);
        }

        /* Calendar toast with change option */
        .cal-toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #1a1a1a;
            color: white;
            padding: 12px 18px;
            border-radius: 14px;
            font-size: 0.85rem;
            font-weight: 500;
            z-index: 10000;
            transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 24px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 92%;
        }
        .cal-toast.show {
            transform: translateX(-50%) translateY(0);
        }
        .cal-toast-change {
            color: #818cf8;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .cal-toast-change:active { opacity: 0.6; }

        /* Sticky Bottom Bar */
        .bottom-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 10px 12px;
            padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
            box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
            z-index: 1000;
            display: flex;
            gap: 8px;
            justify-content: center;
            max-width: 100%;
        }

        .bottom-sticky-bar .bar-btn {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            padding: 8px 4px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.7rem;
            font-weight: 600;
            transition: all 0.2s;
            min-width: 0;
        }

        .bottom-sticky-bar .bar-btn .bar-icon {
            font-size: 1.3rem;
            line-height: 1;
        }

        .bottom-sticky-bar .bar-btn-primary {
            background: var(--primary, #DC143C);
            color: white;
        }

        .bottom-sticky-bar .bar-btn-walkin {
            background: linear-gradient(135deg, #2196F3, #1976D2);
            color: white;
        }

        .bottom-sticky-bar .bar-btn-same {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
        }

        .bottom-sticky-bar .bar-btn-same.hidden {
            display: none;
        }

        .btn-feedback {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border: none;
            color: #333;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 12px;
            width: 100%;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
        }

        .btn-feedback:hover {
            background: linear-gradient(135deg, #FFA500, #FF8C00);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
        }

        /* Buttons */
        .btn {
            display: block;
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s;
            margin-top: 15px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
        }
        
        .btn-secondary {
            background: var(--bg);
            color: var(--text);
            border: 2px solid var(--border);
        }
        
        .btn-row {
            display: flex;
            gap: 10px;
        }
        
        .btn-row .btn {
            flex: 1;
        }
        
        /* History */
        .last-visit-card {
            background: white;
            border-radius: 16px;
            padding: 16px 18px;
            margin-bottom: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            border: 1px solid #f0f0f0;
        }

        .last-visit-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .last-visit-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-light);
        }

        .last-visit-date {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--secondary);
        }

        .last-visit-services {
            font-size: 0.88rem;
            color: var(--secondary);
            font-weight: 500;
            line-height: 1.5;
        }

        .last-visit-count {
            font-size: 0.75rem;
            color: var(--text-light);
            margin-top: 6px;
        }
        
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
            background: var(--bg);
            border-radius: 12px;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
        }
        
        /* Add to Home Screen */
        .install-prompt {
            background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
            border: 2px solid #2196F3;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .install-prompt h4 {
            color: #1565C0;
            margin-bottom: 10px;
        }
        
        .install-prompt p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .install-prompt .btn {
            background: #2196F3;
            color: white;
        }
        
        /* Not Found */
        .not-found {
            text-align: center;
            padding: 60px 20px;
        }
        
        .not-found .emoji {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        
        .not-found h2 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }
        
        .not-found p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        /* Phone Input Screen */
        .phone-input-screen {
            display: none;
        }
        
        .phone-input-screen.active {
            display: block;
        }
        
        .phone-input-card {
            text-align: center;
            padding: 40px 20px;
        }
        
        .phone-input-card h2 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }
        
        .phone-input-card p {
            color: var(--text-light);
            margin-bottom: 30px;
        }
        
        .phone-input-card input {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1.2rem;
            text-align: center;
            letter-spacing: 2px;
        }
        
        .phone-input-card input:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        /* Loading */
        .loading {
            text-align: center;
            padding: 60px 20px;
        }
        
        .loading .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid var(--border);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Days since badge */
        .days-badge {
            display: inline-block;
            background: var(--warning);
            color: #333;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .days-badge.long {
            background: var(--error);
            color: white;
        }

        /* Compact Sticky Header (shown on scroll) */
        .compact-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 250;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
        }
        .compact-header.visible {
            display: block;
            transform: translateY(0);
        }
        .compact-header-inner {
            max-width: 500px;
            margin: 0 auto;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .compact-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
        }
        .compact-avatar span {
            color: white;
            font-weight: 700;
            font-size: 0.75rem;
        }
        .compact-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .compact-info {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            min-width: 0;
        }
        .compact-name {
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .compact-points {
            color: rgba(255,255,255,0.85);
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(255,255,255,0.2);
            padding: 2px 8px;
            border-radius: 10px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* Sticky Tab Bar - Compact */
        .sticky-tabs {
            position: sticky;
            top: 0;
            background: var(--card);
            z-index: 201;
            padding: 8px 0;
            margin: -15px -15px 10px -15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            border-radius: 0 0 15px 15px;
        }

        .tabs-wrapper {
            display: flex;
            justify-content: space-between;
            padding: 0 12px;
            gap: 5px;
        }

        .tab-btn {
            flex: 1;
            background: var(--bg);
            border: none;
            padding: 10px 6px;
            border-radius: 12px;
            font-size: 1.2rem;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tab-btn:hover {
            background: rgba(220, 20, 60, 0.15);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
        }

        .tab-btn .tab-icon {
            font-size: 1.25rem;
        }

        /* Tab Content */
        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Check-in Button */
        .checkin-btn {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
            transition: all 0.3s;
        }

        .checkin-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }

        .checkin-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .checkin-btn .icon {
            font-size: 1.3rem;
        }

        /* Check-in Modal */
        .checkin-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .checkin-modal.active {
            display: flex;
        }

        .checkin-modal-content {
            background: white;
            border-radius: 25px;
            max-width: 400px;
            width: 100%;
            padding: 30px;
            text-align: center;
            max-height: 90vh;
            overflow-y: auto;
        }

        .checkin-step {
            display: none;
        }

        .checkin-step.active {
            display: block;
        }

        .checkin-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--text);
            margin-bottom: 10px;
        }

        .checkin-subtitle {
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .checkin-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }

        .checkin-option {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: 15px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .checkin-option:hover {
            border-color: var(--primary);
            background: rgba(220, 20, 60, 0.1);
        }

        .checkin-option .option-icon {
            font-size: 2.5rem;
        }

        .checkin-option .option-info {
            text-align: left;
        }

        .checkin-option .option-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text);
        }

        .checkin-option .option-desc {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* QR Scanner */
        #qr-reader {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        #qr-reader video {
            border-radius: 15px;
        }

        /* Success Animation */
        .checkin-success {
            padding: 30px;
        }

        .success-icon {
            font-size: 5rem;
            margin-bottom: 20px;
            animation: bounceIn 0.5s;
        }

        @keyframes bounceIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-message {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2E7D32;
            margin-bottom: 10px;
        }

        .success-points {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .btn-close-modal {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
        }

        /* Feedback Survey Styles */
        .feedback-banner {
            background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
            border: 2px solid #2196F3;
            border-radius: 15px;
            padding: 15px 20px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .feedback-banner:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(33, 150, 243, 0.3);
        }

        .feedback-banner-title {
            font-weight: 600;
            color: #1565C0;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .feedback-banner-desc {
            color: #1976D2;
            font-size: 0.9rem;
        }

        /* Add to Home Screen Modal */
        .a2hs-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .a2hs-modal.active { display: flex; }
        .a2hs-content {
            background: white;
            border-radius: 24px;
            max-width: 380px;
            width: 100%;
            padding: 30px 25px;
            text-align: center;
            animation: a2hsSlideUp 0.3s ease;
        }
        @keyframes a2hsSlideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .a2hs-icon {
            width: 80px;
            height: 80px;
            border-radius: 18px;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            overflow: hidden;
        }
        .a2hs-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .a2hs-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 8px;
        }
        .a2hs-subtitle {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 25px;
            line-height: 1.5;
        }
        .a2hs-steps {
            text-align: left;
            background: #f8f9fa;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 25px;
        }
        .a2hs-step {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
        }
        .a2hs-step:last-child { margin-bottom: 0; }
        .a2hs-step-num {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .a2hs-step-text {
            flex: 1;
            font-size: 0.95rem;
            color: #444;
            line-height: 1.4;
            padding-top: 3px;
        }
        .a2hs-step-icon {
            font-size: 1.1rem;
        }
        .a2hs-buttons {
            display: flex;
            gap: 12px;
        }
        .a2hs-btn {
            flex: 1;
            padding: 14px 20px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }
        .a2hs-btn-later {
            background: #f0f0f0;
            color: #666;
        }
        .a2hs-btn-later:active { background: #e0e0e0; }
        .a2hs-btn-ok {
            background: var(--primary);
            color: white;
        }
        .a2hs-btn-ok:active { transform: scale(0.97); }
        .a2hs-checkbox {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
            font-size: 0.85rem;
            color: #888;
        }
        .a2hs-checkbox input {
            width: 16px;
            height: 16px;
        }

        .feedback-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }

        .feedback-modal-content {
            background: white;
            border-radius: 20px;
            max-width: 450px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 25px;
        }

        .feedback-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .feedback-header h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .feedback-section {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }

        .feedback-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .feedback-section-title {
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        .staff-select-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .staff-option {
            text-align: center;
            padding: 10px;
            border: 2px solid var(--border);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .staff-option:hover {
            border-color: var(--primary);
            background: rgba(220, 20, 60, 0.1);
        }

        .staff-option.selected {
            border-color: var(--primary);
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(245, 160, 176, 0.2));
        }

        .staff-option img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 5px;
        }

        .staff-option .staff-avatar-placeholder {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.2rem;
            margin: 0 auto 5px;
        }

        .staff-option .staff-name {
            font-size: 0.8rem;
            color: var(--text);
        }

        .rating-stars {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .rating-star {
            font-size: 2rem;
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s, transform 0.2s;
        }

        .rating-star:hover,
        .rating-star.active {
            color: #FFD700;
            transform: scale(1.1);
        }

        .preference-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .preference-chip {
            padding: 8px 15px;
            border: 2px solid var(--border);
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.2s;
        }

        .preference-chip:hover {
            border-color: var(--primary);
        }

        .preference-chip.selected {
            border-color: var(--primary);
            background: var(--primary);
            color: white;
        }

        .feedback-textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
        }

        .feedback-textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .feedback-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .feedback-buttons button {
            flex: 1;
            padding: 15px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }

        .btn-feedback-cancel {
            background: #f5f5f5;
            color: var(--text);
        }

        .btn-feedback-submit {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }

        .service-feedback-block {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
        }

        .service-feedback-name {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        /* Pull to refresh */
        .ptr-indicator {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%) translateY(-60px);
            z-index: 9998;
            transition: transform 0.2s ease, opacity 0.2s ease;
            opacity: 0;
            pointer-events: none;
        }
        .ptr-indicator.visible {
            opacity: 1;
        }
        .ptr-indicator.refreshing {
            transform: translateX(-50%) translateY(16px);
            opacity: 1;
        }
        .ptr-spinner {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: white;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ptr-arrow {
            font-size: 1.1rem;
            transition: transform 0.2s ease;
            line-height: 1;
        }
        .ptr-arrow.flipped {
            transform: rotate(180deg);
        }
        .ptr-loading {
            display: none;
            width: 20px;
            height: 20px;
            border: 2.5px solid #e5e7eb;
            border-top-color: var(--primary, #DC143C);
            border-radius: 50%;
            animation: ptr-spin 0.7s linear infinite;
        }
        .ptr-indicator.refreshing .ptr-arrow { display: none; }
        .ptr-indicator.refreshing .ptr-loading { display: block; }
        @keyframes ptr-spin { to { transform: rotate(360deg); } }

/* Reschedule Calendar Styles */
        /* Reschedule Calendar Styles */
        .reschedule-date-item {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            padding: 12px 8px;
            min-width: 65px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
            background: #f8f9fa;
            margin-right: 8px;
        }
        .reschedule-date-item:hover {
            background: #e3f2fd;
        }
        .reschedule-date-item.selected {
            background: linear-gradient(135deg, #2196F3, #1976D2);
            color: white;
            border-color: #1565C0;
        }
        .reschedule-date-item.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .reschedule-date-item .day-name {
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .reschedule-date-item .day-num {
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1;
        }
        .reschedule-date-item .month-name {
            font-size: 0.7rem;
            margin-top: 4px;
            opacity: 0.8;
        }
        .reschedule-date-item.today {
            border-color: #2196F3;
        }

        /* Time Slot Styles */
        .reschedule-time-slot {
            padding: 14px 8px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.2s;
            background: white;
        }
        .reschedule-time-slot:hover {
            border-color: #2196F3;
            background: #e3f2fd;
        }
        .reschedule-time-slot.selected {
            background: linear-gradient(135deg, #2196F3, #1976D2);
            color: white;
            border-color: #1565C0;
        }
