/* Vanilla JS Booking Widget Styles - Enhanced for vanilla implementation */

.booking-widget {
    /* Reset styles to prevent inheritance from parent page */
    all: initial;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
        'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
        'Helvetica Neue', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #1f2937;
    box-sizing: border-box;

    /* Widget container styles */
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.booking-widget *,
.booking-widget *::before,
.booking-widget *::after {
    box-sizing: inherit;
}

/* Widget wrapper */
.booking-widget .widget-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-widget .step-container {
    min-height: 500px;
}

/* Email Verification Step Layout */
.booking-widget .email-verification-step {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-widget .step-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    min-height: 500px;
    align-items: center;
}

/* Left side - Image and testimonial */
.booking-widget .step-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #E7F3F5 0%, #EEF5F0 50%, #F4F9E9 100%);
    border-radius: 12px;
    position: relative;
}

/* Testimonial card removed - content placed directly in step-image-section */

.booking-widget .step-image-section .star-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    margin-top: 40px;
}

.booking-widget .step-image-section .star {
    color: #fbbf24;
    font-size: 18px;
}

.booking-widget .step-image-section .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 12px;
    font-style: italic;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 20px;
}

.booking-widget .step-image-section .testimonial-author {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.booking-widget .hero-image {
    width: 100%;
    max-width: 350px;
}

.booking-widget .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Right side - Form */
.booking-widget .step-form-section {
    padding: 40px 20px;
}

.booking-widget .step-header {
    margin-bottom: 32px;
}

.booking-widget .step-indicator {
    margin-bottom: 16px;
}

.booking-widget .step-progress {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 8px;
}

.booking-widget .progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.booking-widget .progress-fill {
    height: 100%;
    background: #3b82f6;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.booking-widget .step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.2;
}

.booking-widget .step-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
}

/* Form styles for new layout */
.booking-widget .step-form-section .form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-widget .step-form-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-widget .step-form-section .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.booking-widget .step-form-section .form-input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
}

.booking-widget .step-form-section .form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.booking-widget .step-form-section .btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-widget .step-form-section .btn-primary:hover:not(:disabled) {
    background: #2563eb;
}

.booking-widget .step-form-section .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* OTP Input Styles */
.booking-widget .otp-input-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.booking-widget .otp-digit {
    width: 50px;
    height: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-widget .otp-digit:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.booking-widget .btn-link {
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px 0;
    margin-top: 8px;
}

.booking-widget .btn-link:hover {
    color: #2563eb;
}

/* Responsive design for Email Verification */
@media (max-width: 768px) {
    .booking-widget .step-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-widget .step-image-section {
        order: 2;
        padding: 20px;
    }

    .booking-widget .step-form-section {
        order: 1;
        padding: 20px;
    }

    /* Testimonial card removed - responsive styles no longer needed */
}

/* Form styles */
.booking-widget .form-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-widget .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-widget .form-label {
    font-weight: 500;
    font-size: 14px;
    color: #374151;
}

.booking-widget .form-input {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #ffffff;
    color: #1f2937;
}

.booking-widget .form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.booking-widget .form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Phone input container */
.booking-widget .phone-input-container {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.booking-widget .country-select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background-color: #ffffff;
    color: #1f2937;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 120px;
    height: auto;
}

.booking-widget .country-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.booking-widget .phone-input {
    flex: 1;
}

/* Button styles */
.booking-widget .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
}

.booking-widget .btn-primary {
    background-color: var(--primary-color, #3b82f6);
    color: #ffffff;
}

.booking-widget .btn-primary:hover:not(:disabled) {
    background-color: var(--primary-color-hover, #2563eb);
}

.booking-widget .btn-secondary {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.booking-widget .btn-secondary:hover:not(:disabled) {
    background-color: #e5e7eb;
}

.booking-widget .btn-outline {
    background-color: transparent;
    color: var(--primary-color, #3b82f6);
    border: 1px solid var(--primary-color, #3b82f6);
}

.booking-widget .btn-outline:hover:not(:disabled) {
    background-color: var(--primary-color, #3b82f6);
    color: #ffffff;
}

.booking-widget .btn-link {
    background-color: transparent;
    color: var(--primary-color, #3b82f6);
    border: none;
    padding: 8px 12px;
    text-decoration: underline;
}

.booking-widget .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.booking-widget .btn.loading {
    pointer-events: none;
}

/* Form actions */
.booking-widget .form-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 24px;
}

.booking-widget .additional-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

/* Card styles */
.booking-widget .card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.booking-widget .card-header {
    text-align: center;
    margin-bottom: 24px;
}

.booking-widget .card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1f2937;
}

.booking-widget .card-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Success icon */
.booking-widget .success-icon {
    width: 64px;
    height: 64px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px auto;
}

/* Timezone info styles */
.booking-widget .timezone-info {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.booking-widget .timezone-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.booking-widget .timezone-label {
    font-weight: 500;
    color: #374151;
}

.booking-widget .timezone-value {
    font-weight: 600;
    color: #1f2937;
}

.booking-widget .timezone-note {
    color: #6b7280;
    font-size: 12px;
    margin-left: auto;
    font-style: italic;
}

/* Calendar styles */
.booking-widget .calendar-section {
    margin-bottom: 24px;
}

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

.booking-widget .calendar-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
}

.booking-widget .calendar-nav {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.booking-widget .calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-widget .calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.booking-widget .weekday {
    padding: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: #6b7280;
}

.booking-widget .calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.booking-widget .calendar-date {
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #ffffff;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-widget .calendar-date:hover:not(.disabled) {
    background-color: #f3f4f6;
    border-color: var(--primary-color, #3b82f6);
}

.booking-widget .calendar-date.selected {
    background-color: var(--primary-color, #3b82f6);
    color: #ffffff;
    border-color: var(--primary-color, #3b82f6);
}

.booking-widget .calendar-date.today {
    background-color: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.booking-widget .calendar-date.other-month {
    color: #9ca3af;
}

.booking-widget .calendar-date.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f9fafb;
}

/* Time slots */
.booking-widget .time-slots-section {
    margin-bottom: 24px;
}

.booking-widget .time-slots-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1f2937;
}

.booking-widget .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.booking-widget .time-slot {
    padding: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #ffffff;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
}

.booking-widget .time-slot:hover:not(.disabled) {
    border-color: var(--primary-color, #3b82f6);
    background-color: #f0f9ff;
}

.booking-widget .time-slot.selected {
    background-color: var(--primary-color, #3b82f6);
    color: #ffffff;
    border-color: var(--primary-color, #3b82f6);
}

.booking-widget .time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f9fafb;
}

.booking-widget .time-zone-hint {
    display: block;
    font-size: 10px;
    opacity: 0.7;
    margin-top: 2px;
}

.booking-widget .loading-message,
.booking-widget .error-message,
.booking-widget .no-slots-message {
    text-align: center;
    padding: 24px;
    color: #6b7280;
    font-style: italic;
}

.booking-widget .error-message {
    color: #ef4444;
}



/* Phone verification specific */
.booking-widget .verification-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-widget .verification-input {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Booking confirmation */
.booking-widget .confirmation-details {
    margin-bottom: 24px;
}

.booking-widget .detail-section {
    margin-bottom: 24px;
}

.booking-widget .detail-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 8px;
}

.booking-widget .detail-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-widget .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.booking-widget .detail-label {
    font-weight: 500;
    color: #6b7280;
}

.booking-widget .detail-value {
    font-weight: 600;
    color: #1f2937;
}

.booking-widget .confirmation-notes {
    background-color: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.booking-widget .note-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.booking-widget .note-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.booking-widget .note-text {
    font-size: 14px;
    color: #0369a1;
}

.booking-widget .booking-summary {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.booking-widget .summary-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1f2937;
}

/* Error and success messages */
.booking-widget .message {
    padding: 12px 16px;
    border-radius: 6px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-widget .message-error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.booking-widget .message-success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.booking-widget .message-info {
    background-color: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.booking-widget .error-message {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
}

/* Loading spinner */
.booking-widget .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: booking-widget-spin 1s linear infinite;
}

@keyframes booking-widget-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.booking-widget .completion-message {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    color: #0369a1;
}

/* Responsive design */
@media (max-width: 640px) {
    .booking-widget {
        padding: 16px;
        margin: 8px;
    }

    .booking-widget .calendar-dates {
        gap: 2px;
    }

    .booking-widget .calendar-date {
        padding: 8px 4px;
        min-height: 36px;
        font-size: 12px;
    }

    .booking-widget .timezone-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .booking-widget .timezone-note {
        margin-left: 0;
        font-size: 11px;
    }

    .booking-widget .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }

    .booking-widget .step {
        min-width: 50px;
    }

    .booking-widget .step span {
        font-size: 10px;
    }

    .booking-widget .form-actions {
        flex-direction: column;
    }

    .booking-widget .additional-actions {
        flex-direction: column;
        gap: 8px;
    }

    .booking-widget .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Dark theme support */
.booking-widget.theme-dark {
    background-color: #1f2937;
    color: #f9fafb;
}

.booking-widget.theme-dark .card {
    background-color: #374151;
    border-color: #4b5563;
}

.booking-widget.theme-dark .card-title,
.booking-widget.theme-dark .detail-value {
    color: #f9fafb;
}

.booking-widget.theme-dark .form-input {
    background-color: #374151;
    border-color: #4b5563;
    color: #f9fafb;
}

.booking-widget.theme-dark .form-input:focus {
    border-color: #60a5fa;
}

.booking-widget.theme-dark .btn-secondary {
    background-color: #4b5563;
    color: #f9fafb;
    border-color: #6b7280;
}

.booking-widget.theme-dark .btn-secondary:hover:not(:disabled) {
    background-color: #6b7280;
}

.booking-widget.theme-dark .calendar-date,
.booking-widget.theme-dark .time-slot {
    background-color: #374151;
    border-color: #4b5563;
    color: #f9fafb;
}

.booking-widget.theme-dark .calendar-date:hover:not(.disabled),
.booking-widget.theme-dark .time-slot:hover:not(.disabled) {
    background-color: #4b5563;
}

.booking-widget.theme-dark .booking-summary,
.booking-widget.theme-dark .confirmation-notes {
    background-color: #374151;
    border-color: #4b5563;
}

.booking-widget.theme-dark .note-text {
    color: #93c5fd;
}

/* Math Goals Component Styles */
.booking-widget .goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.booking-widget .goal-option {
    position: relative;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
}

.booking-widget .goal-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking-widget .goal-card {
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.2s ease;
    text-align: center;
}

.booking-widget .goal-option:hover .goal-card {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.booking-widget .goal-option.selected .goal-card {
    border-color: #10b981;
    background: #f0fdf4;
}

.booking-widget .goal-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.booking-widget .goal-title {
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 4px;
}

.booking-widget .goal-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

.booking-widget .goal-checkmark {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
}

.booking-widget .goal-option.selected .goal-checkmark {
    opacity: 1;
    transform: scale(1);
}

/* MathGoals Component Styles */
.booking-widget .math-goals-step {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-widget .stats-header {
    text-align: center;
    margin-bottom: 32px;
}

.booking-widget .stats-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
}

.booking-widget .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
}

.booking-widget .stat-box {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-widget .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 8px;
}

.booking-widget .stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.booking-widget .stat-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.3;
}

.booking-widget .goals-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.booking-widget .goal-checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    font-size: 16px;
    color: #374151;
    line-height: 1.4;
}

.booking-widget .goal-checkbox-option:hover {
    border-color: #3b82f6;
    background: #f8faff;
}

.booking-widget .goal-checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #3b82f6;
    flex-shrink: 0;
}

.booking-widget .goal-checkbox-option .checkmark {
    display: none;
}

.booking-widget .goal-checkbox-option input[type="checkbox"]:checked+.checkmark {
    display: inline;
}

.booking-widget .goal-checkbox-option .other-input {
    margin-left: 8px;
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #9ca3af;
    font-style: italic;
}

.booking-widget .goal-checkbox-option .other-input:focus {
    color: #374151;
    font-style: normal;
}

.booking-widget .goal-checkbox-option .other-input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.booking-widget .form-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.booking-widget .btn-outline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
}

.booking-widget .btn-outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Calendar and Schedule Component Styles */
.booking-widget .calendar-section {
    margin: 20px 0;
}

.booking-widget .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 8px;
}

.booking-widget .calendar-nav {
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
    transition: all 0.2s ease;
}

.booking-widget .calendar-nav:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.booking-widget .calendar-title {
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
}

.booking-widget .calendar-grid {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.booking-widget .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.booking-widget .calendar-day {
    padding: 12px 8px;
    text-align: center;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.booking-widget .calendar-day:nth-child(7n) {
    border-right: none;
}

.booking-widget .calendar-day:hover:not(.disabled) {
    background: #f3f4f6;
}

.booking-widget .calendar-day.today {
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 600;
}

.booking-widget .calendar-day.selected {
    background: #10b981;
    color: white;
    font-weight: 600;
}

.booking-widget .calendar-day.disabled {
    color: #9ca3af;
    cursor: not-allowed;
    background: #f9fafb;
}

.booking-widget .day-name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}

.booking-widget .day-number {
    font-size: 16px;
    font-weight: 600;
}

.booking-widget .time-slots-section {
    margin-top: 24px;
}

.booking-widget .slots-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.booking-widget .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.booking-widget .time-slot {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.booking-widget .time-slot:hover:not(.unavailable) {
    border-color: #3b82f6;
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.1);
}

.booking-widget .time-slot.selected {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.booking-widget .time-slot.unavailable {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking-widget .calendar-errors {
    margin-top: 12px;
}

.booking-widget .validation-message {
    margin-top: 12px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 640px) {
    .booking-widget .goals-grid {
        grid-template-columns: 1fr;
    }

    .booking-widget .calendar-day {
        min-height: 50px;
        padding: 8px 4px;
    }

    .booking-widget .day-name {
        font-size: 10px;
    }

    .booking-widget .day-number {
        font-size: 14px;
    }

    .booking-widget .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/*# sourceMappingURL=booking-widget-vanilla.css.map*/