.booking-container {
    max-width: 1200px;
    margin: 0 auto;
}

.flatpickr-calendar.inline {
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

.flatpickr-current-month {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
}

.flatpickr-day {
    border-radius: 12px !important;
    height: 45px !important;
    line-height: 45px !important;
    margin: 2px !important;
    font-weight: 600 !important;
}

.flatpickr-day.selected {
    background: #00A19B !important;
    border-color: #00A19B !important;
    box-shadow: 0 10px 15px -3px rgba(0, 161, 155, 0.3) !important;
}

.scheduler-grid {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    min-height: 700px;
}

@media (min-width: 768px) {
    .scheduler-grid {
        grid-template-columns: 350px 1fr;
    }
}

.scheduler-sidebar {
    background: #f8fafc;
    padding: 40px;
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.step-content {
    display: none;
}

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

.animate-in {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-slot {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    cursor: pointer;
    background: #fff;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    color: #475569;
}

.time-slot:hover {
    border-color: #00A19B;
    background: #f0fdfa;
    color: #00A19B;
    transform: translateY(-2px);
}

.time-slot.selected {
    background: #00A19B;
    border-color: #00A19B;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 161, 155, 0.3);
}

.time-slot.booked {
    background-color: #f8fafc !important;
    border-color: #f1f5f9 !important;
    color: #cbd5e1 !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
    opacity: 0.6;
    pointer-events: none;
}

.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 32px;
    padding: 12px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #00A19B;
    box-shadow: 0 25px 50px -12px rgba(0, 161, 155, 0.12);
}

.service-card.selected {
    border-color: #00A19B;
    background: #f0fdfa;
    box-shadow: 0 0 0 4px rgba(0, 161, 155, 0.1);
}

.plus-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A19B;
    transition: all 0.4s ease;
}

.service-card:hover .plus-icon-container {
    background-color: #00A19B;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.service-card.selected .plus-icon-container {
    background-color: #0066B2;
    color: #fff;
    transform: rotate(45deg);
}

#booking-notes-input:focus,
#step-final-content input:focus {
    box-shadow: 0 0 0 4px rgba(0, 161, 155, 0.1);
    border-color: #00A19B !important;
    background-color: #fff;
    outline: none;
}

#step-final-content input {
    transition: all 0.3s ease;
}

#step-final-content input::placeholder {
    color: #cbd5e1;
    font-weight: 500;
}

#step-final-content .space-y-2 label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Success Modal Styles */
#success-modal.visible {
    visibility: visible;
    opacity: 1;
}

#success-modal.visible #success-modal-content {
    transform: translateY(0);
}

/* Error Modal Styles */
#error-modal.visible {
    visibility: visible;
    opacity: 1;
}

#error-modal.visible #error-modal-content {
    transform: translateY(0);
}

.modal-close {
    cursor: pointer;
}