.momentum-booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.momentum-booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.momentum-booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.momentum-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.momentum-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #999;
}

.momentum-step.active .momentum-step-circle {
    background: #006699;
    border-color: #006699;
    color: #fff;
}

.momentum-step.completed .momentum-step-circle {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.momentum-step-label {
    font-size: 14px;
    color: #666;
}

.momentum-step.active .momentum-step-label {
    color: #006699;
    font-weight: 600;
}

.momentum-booking-content {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.momentum-appointment-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.momentum-appointment-type {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.momentum-appointment-type:hover {
    border-color: #006699;
    box-shadow: 0 4px 8px rgba(0,102,153,0.1);
}

.momentum-appointment-type.selected {
    border-color: #006699;
    background: #e3f2fd;
}

.momentum-appointment-type h3 {
    margin: 0 0 10px 0;
    color: #006699 !important;
    font-size: 18px !important;
}

.momentum-appointment-type .duration {
    color: #666 !important;
    font-size: 14px !important;
}

.momentum-appointment-type .description {
    color: #999 !important;
    font-size: 13px !important;
    margin-top: 10px;
}

.momentum-booking-content h2 {
    color: #333 !important;
    margin-bottom: 20px !important;
}

.momentum-booking-content label {
    color: #333 !important;
}

.momentum-booking-content input,
.momentum-booking-content select,
.momentum-booking-content textarea {
    color: #333 !important;
    background-color: #fff !important;
}

.momentum-calendar-day {
    color: #333 !important;
}

.momentum-time-slot {
    color: #333 !important;
    background-color: #f8f9fa !important;
}

.momentum-time-slot:hover:not(.disabled) {
    background-color: #e9ecef !important;
}

.momentum-time-slot.selected {
    background-color: #006699 !important;
    color: #fff !important;
}

.momentum-calendar-picker {
    margin-bottom: 30px;
}

.momentum-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.momentum-calendar-header h3 {
    margin: 0;
}

.momentum-calendar-nav button {
    background: #006699;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 5px;
}

.momentum-calendar-nav button:hover {
    background: #005580;
}

.momentum-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.momentum-calendar-day-name {
    text-align: center;
    font-weight: 600;
    padding: 10px;
    color: #666;
}

.momentum-calendar-day {
    aspect-ratio: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    color: #333;
    font-weight: 500;
}

.momentum-calendar-day:hover:not(.disabled):not(.empty) {
    background: #f5f5f5;
    border-color: #006699;
}

.momentum-calendar-day.selected {
    background: #006699;
    color: #fff;
    border-color: #006699;
}

.momentum-calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f9f9f9;
}

.momentum-calendar-day.empty {
    border: none;
    cursor: default;
    background: transparent;
}

.momentum-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.momentum-time-slot {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    color: #333;
    font-weight: 500;
}

.momentum-time-slot:hover {
    border-color: #006699;
    background: #f5f5f5;
}

.momentum-time-slot.selected {
    background: #006699;
    color: #fff;
    border-color: #006699;
}

.momentum-time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9f9f9;
}

.momentum-booking-summary {
    background: #f8f9fa !important;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
}

.momentum-booking-summary h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333333 !important;
    font-size: 18px;
    font-weight: 600;
}

.momentum-booking-summary p {
    margin: 8px 0;
    color: #333333 !important;
    font-size: 14px;
}

.momentum-booking-summary strong {
    color: #006699 !important;
}

.momentum-form-group {
    margin-bottom: 20px;
}

.momentum-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.momentum-form-group input,
.momentum-form-group textarea,
.momentum-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #ffffff;
    color: #333333;
}

.momentum-form-group textarea {
    min-height: 100px;
    resize: vertical;
    background-color: #ffffff;
    color: #333333;
}

.momentum-form-group .required {
    color: #dc3545;
}

.momentum-form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.momentum-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.momentum-btn-primary {
    background: #006699;
    color: #fff;
}

.momentum-btn-primary:hover {
    background: #005580;
}

.momentum-btn-secondary {
    background: #6c757d;
    color: #fff;
}

.momentum-btn-secondary:hover {
    background: #5a6268;
}

.momentum-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.momentum-confirmation {
    text-align: center;
}

.momentum-confirmation .success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 40px;
}

.momentum-confirmation h2 {
    color: #28a745 !important;
    margin-bottom: 20px;
}

.momentum-confirmation p {
    color: #333333 !important;
}

.momentum-booking-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.momentum-booking-details h3 {
    margin-top: 0;
    color: #333333 !important;
    font-weight: 600;
}

.momentum-booking-details p {
    margin: 10px 0;
    color: #333333 !important;
}

.momentum-booking-details strong {
    display: inline-block;
    width: 150px;
    color: #006699 !important;
}

.momentum-zoom-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #2D8CFF;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.momentum-zoom-link:hover {
    background: #1a75d2;
}

.momentum-loading {
    text-align: center;
    padding: 40px;
}

.momentum-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,102,153,0.3);
    border-radius: 50%;
    border-top-color: #006699;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.momentum-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.momentum-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.momentum-timezone-selector {
    margin-bottom: 20px;
}

.momentum-cancel-page,
.momentum-reschedule-page {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.momentum-cancel-page h2,
.momentum-reschedule-page h2 {
    color: #006699;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .momentum-booking-container {
        padding: 10px;
    }
    
    .momentum-booking-content {
        padding: 20px;
    }
    
    .momentum-appointment-types {
        grid-template-columns: 1fr;
    }
    
    .momentum-time-slots {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .momentum-booking-steps {
        font-size: 12px;
    }
    
    .momentum-step-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
