
      
    


      
     


      {} *{} {}
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 :root { --primary-blue: #0052CC; --primary-dark: #001F3F; --accent-gold: #FFB81C; --accent-teal: #00B8D4; --success-green: #36B37E; --gradient-primary: linear-gradient(135deg, #0052CC 0%, #00B8D4 100%); --gradient-dark: linear-gradient(135deg, #001F3F 0%, #0052CC 100%); --gradient-gold: linear-gradient(135deg, #FFB81C 0%, #FF9100 100%); --font-primary: 'Inter', sans-serif; --font-display: 'Playfair Display', serif; --shadow-sm: 0 2px 12px rgba(0,0,0,0.08); --shadow-md: 0 8px 24px rgba(0,0,0,0.12); --shadow-lg: 0 16px 48px rgba(0,0,0,0.16); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-primary); color: #1a1a1a; overflow-x: hidden; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); } h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; } /* Navigation */ .navbar-custom { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; } .navbar-brand-custom { font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; color: var(--primary-blue); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; } .navbar-brand-custom .brand-year { color: var(--accent-gold); font-size: 1.25rem; } /* Page Header */ .page-header { background: var(--gradient-dark); color: white; padding: 140px 0 80px; position: relative; overflow: hidden; } .page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%, rgba(0, 184, 212, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 184, 28, 0.1) 0%, transparent 50%); pointer-events: none; } .page-header::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%); } .page-header-content { position: relative; z-index: 2; text-align: center; } .page-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(54, 179, 126, 0.2); border: 2px solid var(--success-green); padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; color: var(--success-green); margin-bottom: 2rem; } .page-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; color: white; } .page-header p { font-size: clamp(1.125rem, 2vw, 1.375rem); color: rgba(255, 255, 255, 0.9); max-width: 800px; margin: 0 auto; } /* Progress Steps */ .progress-steps { background: white; padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-md); margin: -60px auto 60px; max-width: 900px; position: relative; z-index: 10; } .steps-container { display: flex; justify-content: space-between; align-items: center; position: relative; } .steps-container::before { content: ''; position: absolute; top: 30px; left: 12%; right: 12%; height: 3px; background: var(--success-green); z-index: 0; } .steps-container::after { content: ''; position: absolute; top: 30px; left: 62%; right: 12%; height: 3px; background: #e0e0e0; z-index: 0; } .progress-step { flex: 1; text-align: center; position: relative; z-index: 1; } .step-circle { width: 60px; height: 60px; border-radius: 50%; background: #e0e0e0; color: #999; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; font-weight: 900; transition: all 0.3s ease; border: 4px solid white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .progress-step.active .step-circle { background: var(--gradient-primary); color: white; transform: scale(1.1); } .progress-step.completed .step-circle { background: var(--success-green); color: white; } .progress-step.completed .step-circle::before { content: '✓'; } .step-label { font-size: 0.875rem; color: #666; font-weight: 600; } .progress-step.active .step-label { color: var(--primary-blue); font-weight: 700; } .progress-step.completed .step-label { color: var(--success-green); } /* Schedule Section */ .schedule-section { padding: 60px 0 100px; } .schedule-card { background: white; border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-lg); } .section-title { color: var(--primary-blue); font-size: 2rem; margin-bottom: 0.5rem; } .section-subtitle { color: #666; margin-bottom: 2rem; } /* Modern Calendar Wrapper - UPDATED */ .calendar-embed-wrapper { background: #ffffff; border-radius: 20px; padding: 2rem; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); margin: 2rem 0; position: relative; overflow: hidden; min-height: 400px; } @media (max-width: 768px) { .calendar-embed-wrapper { padding: 1.25rem; border-radius: 16px; } } /* Loading State */ .loading { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem; gap: 1.5rem; } .loading .spinner { width: 50px; height: 50px; border: 4px solid #f0f0f0; border-top-color: var(--primary-blue); border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } .loading p { color: #666; font-size: 1rem; font-weight: 500; margin: 0; } /* Error Message */ .error-message { display: none; background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%); color: #c62828; padding: 1.25rem 1.5rem; border-radius: 12px; border-left: 4px solid #c62828; margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.6; } .error-message.visible { display: block; animation: slideDown 0.3s ease-out; } @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } /* Customer Info Banner */ .customer-info { background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%); border: 2px solid rgba(0, 82, 204, 0.15); border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; } .customer-info-content { display: flex; align-items: center; gap: 1.25rem; } .customer-avatar { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .customer-avatar i { font-size: 2rem; color: white; } .customer-details { flex: 1; } .customer-label { display: block; font-size: 0.875rem; color: #666; font-weight: 500; margin-bottom: 0.25rem; } .customer-info h3 { margin: 0; font-size: 1.25rem; color: var(--primary-blue); font-weight: 700; } @media (max-width: 576px) { .customer-avatar { width: 50px; height: 50px; } .customer-avatar i { font-size: 1.75rem; } .customer-info h3 { font-size: 1.1rem; } } /* Times Container */ .times-container { animation: fadeIn 0.4s ease-out; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .times-container > h2 { font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 1.5rem; font-weight: 700; text-align: center; } /* Date Groups */ .date-group { margin-bottom: 2.5rem; } .date-group:last-child { margin-bottom: 0; } .date-group-header { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%); color: white; padding: 0.875rem 1.25rem; border-radius: 12px; font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; } /* Times Grid */ .times-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; } @media (max-width: 576px) { .times-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.75rem; } } @media (min-width: 768px) and (max-width: 991px) { .times-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); } } @media (min-width: 992px) { .times-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); } } /* Time Slots */ .time-slot { background: white; border: 2px solid #e0e0e0; border-radius: 12px; padding: 1rem 0.75rem; text-align: center; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; } .time-slot::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal)); opacity: 0; transition: opacity 0.3s ease; } .time-slot:hover { border-color: var(--primary-blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 82, 204, 0.15); } .time-slot:hover::before { opacity: 0.05; } .time-slot.selected { border-color: var(--primary-blue); background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal)); color: white; transform: scale(1.05); box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3); } .time-slot .time { font-size: 1.1rem; font-weight: 700; position: relative; z-index: 1; } .time-slot.selected .time { color: white; } .time-slot .date { display: none; } /* Booking Form */ .booking-form { display: none; background: linear-gradient(135deg, rgba(0, 82, 204, 0.02) 0%, rgba(0, 184, 212, 0.02) 100%); border: 2px solid rgba(0, 82, 204, 0.1); border-radius: 20px; padding: 2rem; margin-top: 2.5rem; } .booking-form.visible { display: block; animation: slideUp 0.4s ease-out; } @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .booking-form-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid rgba(0, 82, 204, 0.1); } .booking-form-header i { font-size: 2rem; color: var(--primary-blue); } .booking-form-header h3 { margin: 0; font-size: 1.5rem; color: var(--primary-dark); font-weight: 700; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; } @media (max-width: 768px) { .form-row { grid-template-columns: 1fr; gap: 1rem; } .booking-form { padding: 1.5rem; } .booking-form-header { flex-direction: column; text-align: center; gap: 0.75rem; } } .form-group { margin-bottom: 1.5rem; } .form-group:last-child { margin-bottom: 0; } .form-group label { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 0.75rem; font-size: 0.95rem; } .form-group label i { color: var(--primary-blue); font-size: 1.1rem; } .form-group label .optional { font-weight: 400; color: #999; font-size: 0.875rem; } .form-group input, .form-group textarea { width: 100%; padding: 0.875rem 1rem; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 1rem; transition: all 0.3s ease; background: white; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1); } .form-group input[readonly] { background: #f8f9fa; color: #495057; cursor: not-allowed; } .form-group textarea { resize: vertical; min-height: 100px; font-family: inherit; } /* Confirm Button */ .confirm-btn { width: 100%; background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal)); color: white; border: none; padding: 1.125rem 2rem; border-radius: 12px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3); } .confirm-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0, 82, 204, 0.4); } .confirm-btn:active { transform: translateY(0); } .confirm-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; } .confirm-btn i { font-size: 1.25rem; } /* Success Message */ .success-message { display: none; text-align: center; padding: 3rem 2rem; } .success-message.visible { display: block; animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); } @keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } } .success-animation { margin-bottom: 2rem; } .success-icon { width: 100px; height: 100px; margin: 0 auto; background: linear-gradient(135deg, #4caf50, #66bb6a); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: pulse 2s infinite; } .success-icon i { font-size: 3.5rem; color: white; } @keyframes pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); } 50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(76, 175, 80, 0); } } .success-message h2 { font-size: 2rem; color: var(--primary-dark); margin-bottom: 1rem; font-weight: 700; } .success-message p { font-size: 1.1rem; color: #666; line-height: 1.7; max-width: 500px; margin: 0 auto 2rem; } .success-actions { margin-top: 2rem; } .btn-success-primary { display: inline-flex; align-items: center; gap: 0.75rem; background: linear-gradient(135deg, #4caf50, #66bb6a); color: white; padding: 1rem 2rem; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3); } .btn-success-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4); color: white; } @media (max-width: 576px) { .success-icon { width: 80px; height: 80px; } .success-icon i { font-size: 2.5rem; } .success-message h2 { font-size: 1.5rem; } .success-message p { font-size: 1rem; } } /* Interview Info Cards */ .info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; } .info-card { background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%); border: 2px solid rgba(0, 82, 204, 0.2); border-radius: 16px; padding: 1.5rem; transition: all 0.3s ease; } .info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-blue); } .info-card-icon { width: 56px; height: 56px; background: var(--gradient-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: white; margin-bottom: 1rem; } .info-card h5 { color: var(--primary-blue); font-size: 1.125rem; margin-bottom: 0.75rem; } .info-card p { color: #555; margin: 0; font-size: 0.95rem; line-height: 1.6; } /* Interview Preparation */ .prep-section { background: linear-gradient(135deg, rgba(255, 184, 28, 0.05) 0%, rgba(255, 145, 0, 0.05) 100%); border: 2px solid var(--accent-gold); border-radius: 20px; padding: 2.5rem; margin: 3rem 0; } .prep-section h4 { color: var(--accent-gold); font-size: 1.75rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; } .prep-section h4 i { font-size: 2rem; } .prep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .prep-item { display: flex; gap: 1rem; } .prep-number { width: 40px; height: 40px; background: var(--accent-gold); color: var(--primary-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.25rem; flex-shrink: 0; } .prep-content h6 { color: var(--primary-dark); font-weight: 700; margin-bottom: 0.5rem; } .prep-content p { color: #555; margin: 0; font-size: 0.95rem; } /* Tech Requirements */ .tech-requirements { background: white; border: 2px solid #e0e0e0; border-radius: 16px; padding: 2rem; margin: 2rem 0; } .tech-requirements h5 { color: var(--primary-blue); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; } .tech-requirements h5 i { font-size: 1.5rem; } .tech-list { list-style: none; padding: 0; margin: 0; } .tech-list li { padding: 0.75rem 0 0.75rem 2.5rem; position: relative; border-bottom: 1px solid #f0f0f0; } .tech-list li:last-child { border-bottom: none; } .tech-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success-green); font-weight: 900; font-size: 1.25rem; } /* Question Preview */ .questions-preview { background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%); border-radius: 20px; padding: 2.5rem; margin: 2rem 0; } .questions-preview h5 { color: var(--primary-blue); margin-bottom: 1.5rem; } .question-item { background: white; border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm); } .question-item:last-child { margin-bottom: 0; } .question-icon { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--gradient-primary); color: white; border-radius: 50%; font-weight: 700; font-size: 0.875rem; margin-right: 1rem; } .question-text { color: var(--primary-dark); font-weight: 600; display: inline; } /* Buttons */ .btn-primary-custom { background: var(--gradient-primary); color: white; border: none; padding: 1.25rem 3rem; font-size: 1.125rem; font-weight: 700; border-radius: 12px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.75rem; box-shadow: 0 8px 24px rgba(0, 82, 204, 0.25); text-decoration: none; } .btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 82, 204, 0.35); color: white; } .btn-secondary-custom { background: white; color: var(--primary-blue); border: 2px solid var(--primary-blue); padding: 1rem 2.5rem; font-size: 1rem; font-weight: 700; border-radius: 12px; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.75rem; } .btn-secondary-custom:hover { background: var(--primary-blue); color: white; } /* Info Boxes */ .info-box { background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%); border-left: 4px solid var(--primary-blue); padding: 1.5rem; border-radius: 12px; margin: 2rem 0; } .info-box i { color: var(--primary-blue); font-size: 1.5rem; margin-right: 0.75rem; } .info-box p { margin: 0; color: #444; } /* Sidebar */ .sidebar-card { background: white; border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-md); position: sticky; top: 100px; } .sidebar-card h4 { color: var(--primary-blue); font-size: 1.5rem; margin-bottom: 1.5rem; } .progress-indicator { background: #f8f9fa; border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; } .progress-indicator h6 { color: var(--primary-dark); font-weight: 700; margin-bottom: 1rem; } .checklist-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; } .checklist-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; } .checklist-icon.completed { background: var(--success-green); color: white; } .checklist-icon.pending { background: #e0e0e0; color: #999; } .checklist-text { font-size: 0.95rem; color: #666; } .checklist-item.completed .checklist-text { color: var(--success-green); font-weight: 600; } .milestone-box { background: linear-gradient(135deg, rgba(54, 179, 126, 0.1) 0%, rgba(54, 179, 126, 0.05) 100%); border: 2px solid var(--success-green); border-radius: 16px; padding: 1.5rem; margin: 2rem 0; text-align: center; } .milestone-box i { font-size: 3rem; color: var(--success-green); margin-bottom: 1rem; } .milestone-box h6 { color: var(--success-green); font-weight: 700; margin-bottom: 0.5rem; } .milestone-box p { font-size: 0.875rem; color: #555; margin: 0; } .urgency-badge { background: linear-gradient(135deg, rgba(255, 184, 28, 0.1) 0%, rgba(255, 145, 0, 0.1) 100%); border: 2px solid var(--accent-gold); border-radius: 16px; padding: 1.5rem; text-align: center; } .urgency-badge i { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 1rem; } .urgency-badge strong { display: block; color: var(--accent-gold); font-size: 1.125rem; margin-bottom: 0.5rem; } .urgency-badge p { font-size: 0.875rem; color: #666; margin: 0; } /* Footer */ .footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.8); padding: 40px 0 20px; margin-top: 60px; } .footer h5 { color: white; font-size: 1.125rem; margin-bottom: 1rem; } .footer-links { list-style: none; padding: 0; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--accent-gold); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 2rem; padding-top: 1.5rem; text-align: center; font-size: 0.875rem; } /* Responsive */ @media (max-width: 768px) { .page-header { padding: 120px 0 60px; } .progress-steps { margin: -40px 1rem 40px; padding: 1.5rem 1rem; } .steps-container { flex-direction: column; gap: 1rem; } .steps-container::before, .steps-container::after { display: none; } .schedule-card { padding: 2rem 1.5rem; } .info-cards { grid-template-columns: 1fr; } .prep-grid { grid-template-columns: 1fr; } .sidebar-card { position: relative; top: 0; margin-top: 2rem; } .btn-primary-custom, .btn-secondary-custom { width: 100%; justify-content: center; } } 

 /* MODAL FIX - Maximum specificity and !important overrides */ #modalOverlay { display: none !important; position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; width: 100vw !important; height: 100vh !important; background: rgba(0, 0, 0, 0.7) !important; z-index: 999999 !important; align-items: center !important; justify-content: center !important; padding: 20px !important; margin: 0 !important; overflow: auto !important; } #modalOverlay.visible { display: flex !important; } #modalOverlay .modal { display: block !important; position: relative !important; background: white !important; padding: 30px !important; border-radius: 12px !important; max-width: 500px !important; width: 90% !important; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important; z-index: 1000000 !important; margin: auto !important; opacity: 1 !important; visibility: visible !important; transform: scale(1) !important; } #modalOverlay .modal h2 { margin: 0 0 15px 0 !important; color: #333 !important; font-size: 22px !important; font-weight: 600 !important; display: block !important; } #modalOverlay .modal p, #modalOverlay #modalContent { margin: 0 0 25px 0 !important; color: #666 !important; line-height: 1.6 !important; font-size: 16px !important; display: block !important; } #modalOverlay .modal-actions { display: flex !important; gap: 10px !important; justify-content: flex-end !important; align-items: center !important; } #modalOverlay .modal-btn { display: inline-block !important; padding: 12px 24px !important; border: none !important; border-radius: 6px !important; font-size: 15px !important; font-weight: 600 !important; cursor: pointer !important; transition: all 0.3s ease !important; opacity: 1 !important; visibility: visible !important; } #modalOverlay .modal-btn.cancel { background: #e0e0e0 !important; color: #333 !important; } #modalOverlay .modal-btn.cancel:hover { background: #d0d0d0 !important; } #modalOverlay .modal-btn.confirm { background: #27ae60 !important; color: white !important; } #modalOverlay .modal-btn.confirm:hover { background: #229954 !important; } body #modalOverlay, html #modalOverlay { display: none !important; } body #modalOverlay.visible, html #modalOverlay.visible { display: flex !important; } @media (max-width: 768px) { #modalOverlay .modal { padding: 20px !important; max-width: 95% !important; } #modalOverlay .modal-actions { flex-direction: column !important; } #modalOverlay .modal-btn { width: 100% !important; } } 

 /* Schedule Page Styles */ .loading { text-align: center; padding: 3rem; } .loading .spinner { border: 4px solid #f3f3f3; border-top: 4px solid #0052cc; border-radius: 50%; width: 50px; height: 50px; animation: spin 1s linear infinite; margin: 0 auto 1rem; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .error-message { display: none; background: #fee; border: 1px solid #fcc; color: #c00; padding: 1rem; border-radius: 8px; margin: 1rem 0; } .error-message.visible { display: block; } .customer-info { background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%); border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; box-shadow: 0 2px 8px rgba(0,82,204,0.1); } .customer-info-content { display: flex; align-items: center; gap: 1rem; } .customer-avatar { font-size: 3rem; color: #0052cc; } .customer-label { font-size: 0.875rem; color: #666; display: block; } .customer-details h3 { margin: 0; color: #0052cc; font-size: 1.5rem; } .times-container { margin: 2rem 0; } .date-group { margin-bottom: 2rem; } .date-group-header { font-size: 1.2rem; font-weight: 600; color: #0052cc; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #e0e0e0; } .times-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; } .time-slot { padding: 1rem; border: 2px solid #e0e0e0; border-radius: 8px; text-align: center; cursor: pointer; transition: all 0.3s ease; background: white; } .time-slot:hover { border-color: #0052cc; background-color: #f0f7ff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,82,204,0.15); } .time-slot.selected { border-color: #0052cc; background-color: #e3f2fd; box-shadow: 0 4px 12px rgba(0,82,204,0.2); } .time-slot .time { font-weight: 600; color: #333; } .booking-form { display: none; background: #f8f9fa; border-radius: 12px; padding: 2rem; margin-top: 2rem; } .booking-form.visible { display: block; animation: slideIn 0.3s ease; } @keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .booking-form-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; color: #0052cc; } .booking-form-header i { font-size: 2rem; } .booking-form-header h3 { margin: 0; } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: #333; } .form-group label i { margin-right: 0.5rem; color: #0052cc; } .form-group input { width: 100%; padding: 0.75rem; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; background: white; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } .confirm-btn { width: 100%; padding: 1rem; background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%); color: white; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 0.5rem; } .confirm-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,82,204,0.3); } .confirm-btn:disabled { opacity: 0.6; cursor: not-allowed; } .success-message { display: none; text-align: center; padding: 3rem; background: #f0f9ff; border-radius: 12px; } .success-message.visible { display: block; animation: fadeIn 0.5s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .success-animation { margin-bottom: 2rem; } .success-icon { font-size: 4rem; color: #27ae60; animation: scaleIn 0.5s ease; } @keyframes scaleIn { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } } .success-message h2 { color: #27ae60; margin-bottom: 1rem; } .success-actions { margin-top: 2rem; } .btn-success-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; background: linear-gradient(135deg, #27ae60 0%, #229954 100%); color: white; text-decoration: none; border-radius: 8px; font-weight: 600; transition: all 0.3s ease; } .btn-success-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(39,174,96,0.3); color: white; } .modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; } .modal-overlay.visible { display: flex; } .modal { background: white; padding: 2rem; border-radius: 12px; max-width: 500px; width: 90%; box-shadow: 0 10px 40px rgba(0,0,0,0.3); } .modal h2 { margin-top: 0; color: #0052cc; } .modal-actions { display: flex; gap: 1rem; margin-top: 2rem; justify-content: flex-end; } .modal-btn { padding: 0.75rem 1.5rem; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .modal-btn.cancel { background: #e0e0e0; color: #333; } .modal-btn.cancel:hover { background: #d0d0d0; } .modal-btn.confirm { background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%); color: white; } .modal-btn.confirm:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,82,204,0.3); } @media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } .times-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); } } 

