body {
            font-family: 'Inter', sans-serif;
            /* Updated background to a light gray, calming gradient */
            background: white; /* Soft, light gray gradient */
            background-size: 400% 400%; /* Make gradient larger than viewport */
            animation: gradientAnimation 15s ease infinite; /* Smooth, slow animation */
            color: #333;
        }

        @keyframes gradientAnimation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .container-wrapper {
            display: flex;
            justify-content: center;
            align-items: center; /* Center vertically for better balance */
            min-height: 100vh;
            padding: 24px; /* Increased padding */
            box-sizing: border-box; /* Include padding in element's total width and height */
        }
        .booking-card {
            background-color: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Softer, larger shadow */
            border-radius: 20px; /* More rounded corners */
            width: 100%;
            max-width: 420px; /* Slightly wider card */
            padding: 32px; /* Increased padding */
            transition: all 0.3s ease-in-out; /* Smooth transitions */
        }
        .header {
            display: flex;
            align-items: center;
            margin-bottom: 28px; /* More space */
        }
        .header svg {
            margin-right: 16px; /* More space */
            cursor: pointer;
            color: #555;
            transition: transform 0.2s ease;
        }
        .header svg:hover {
            transform: translateX(-3px);
        }
        .header h1 {
            font-size: 1.6rem; /* Larger title */
            font-weight: 700; /* Bolder */
            color: #222;
        }
        .date-picker-container {
            display: flex;
            justify-content: space-between; /* Space out items evenly */
            margin-top: 20px;
            margin-bottom: 32px; /* More space */
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 12px; /* Space for scrollbar */
            gap: 12px; /* Gap between date items */
        }
        .date-item {
            flex-shrink: 0;
            text-align: center;
            padding: 10px 14px; /* Slightly larger touch area */
            border-radius: 14px; /* More rounded */
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #E5E7EB; /* Subtle border */
        }
        .date-item:hover:not(.selected) {
            background-color: #F3F4F6;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .date-item.selected {
            background-color: #7C3AED; /* Deeper purple */
            color: #fff;
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3); /* Purple shadow */
            border-color: #7C3AED;
        }
        .date-item .day {
            font-weight: 700; /* Bolder day */
            font-size: 1.2em; /* Larger day */
            color: #333;
        }
        .date-item .month, .date-item .day-name {
            font-size: 0.85em; /* Slightly larger month/day name */
            color: #666;
            margin-top: 2px;
        }
        .date-item.selected .day,
        .date-item.selected .month,
        .date-item.selected .day-name {
            color: #fff;
        }
        .input-group {
            margin-bottom: 24px; /* Consistent spacing */
        }
        .input-group label {
            font-weight: 600; /* Bolder label */
            color: #444;
            margin-bottom: 10px; /* More space */
            display: block;
            font-size: 0.95em;
        }
        .custom-select {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #F9FAFB; /* Lighter background for inputs */
            border-radius: 14px; /* More rounded */
            padding: 14px 18px; /* Larger padding */
            cursor: pointer;
            position: relative;
            border: 1px solid #E5E7EB; /* Subtle border */
            transition: all 0.2s ease;
        }
        .custom-select:hover {
            border-color: #A78BFA; /* Light purple border on hover */
            box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2); /* Soft focus ring */
        }
        .custom-select span {
            color: #333;
            font-weight: 500;
        }
        .custom-select svg {
            color: #888;
        }
        .dropdown-options {
            position: absolute;
            background-color: #fff;
            border-radius: 12px; /* More rounded */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); /* Stronger shadow */
            z-index: 10;
            width: 100%;
            left: 0;
            top: calc(100% + 10px); /* More space from select */
            display: none;
            max-height: 200px; /* Limit height for scroll */
            overflow-y: auto;
        }
        .dropdown-options.show {
            display: block;
        }
        .dropdown-option {
            padding: 12px 18px; /* Larger padding */
            cursor: pointer;
            transition: background-color 0.2s ease;
            color: #444;
        }
        .dropdown-option:hover {
            background-color: #F3F4F6;
            color: #7C3AED; /* Purple text on hover */
        }
        .diner-counter {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #F9FAFB;
            border-radius: 14px;
            padding: 14px 18px;
            border: 1px solid #E5E7EB;
        }
        .diner-counter svg {
            color: #888;
            margin-right: 8px;
        }
        .diner-counter span {
            font-weight: 600;
            font-size: 1.1em;
            color: #333;
            flex-grow: 1; /* Allow "Total members" to take space */
        }
        .diner-counter button {
            background-color: #EEE; /* Lighter button background */
            border-radius: 10px; /* More rounded */
            width: 40px; /* Larger buttons */
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.4em; /* Larger font */
            font-weight: 600;
            color: #555;
            transition: background-color 0.2s ease, transform 0.1s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        .diner-counter button:hover {
            background-color: #DDD;
            transform: translateY(-1px);
        }
        .diner-counter button:active {
            transform: translateY(0);
            box-shadow: none;
        }
        .info-text {
            font-size: 0.88em; /* Slightly larger info text */
            color: #777;
            margin-top: 10px;
            line-height: 1.4;
        }
        .info-text svg {
            color: #777;
        }
        .discount-section {
            background-color: #FFFBEB; /* Softer yellow */
            border-radius: 14px;
            padding: 18px; /* More padding */
            margin-top: 32px; /* More space */
            display: flex;
            align-items: flex-start; /* Align icon to top of text */
            font-size: 0.92em; /* Slightly larger font */
            color: #92400E;
            border: 1px solid #FDE68A; /* Subtle yellow border */
        }
        .discount-section svg {
            margin-right: 14px; /* More space */
            color: #FBBF24;
            flex-shrink: 0; /* Prevent icon from shrinking */
        }
        .discount-section p {
            line-height: 1.5;
        }
        .footer-details {
            margin-top: 32px;
            padding-top: 24px; /* More padding */
            border-top: 1px solid #F3F4F6; /* Lighter border */
        }
        .footer-details p {
            font-size: 0.95em;
            color: #444;
            font-weight: 500;
            margin-bottom: 6px;
        }
        .footer-details p.text-gray-500 {
            color: #777;
            font-size: 0.85em;
        }
        .continue-button {
            background-color: #7C3AED; /* Deeper purple */
            color: #fff;
            padding: 16px 28px; /* Larger button */
            border-radius: 14px; /* More rounded */
            width: 100%;
            font-weight: 700; /* Bolder text */
            font-size: 1.15em; /* Larger font */
            margin-top: 24px; /* More space */
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3); /* Prominent shadow */
        }
        .continue-button:hover {
            background-color: #6D28D9; /* Slightly darker purple on hover */
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(124, 58, 237, 0.4);
        }
        .continue-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 10px rgba(124, 58, 237, 0.2);
        }

        /* Right side illustration */
        .illustration-container {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            flex: 1;
            max-width: 500px; /* Limit width of illustration container */
        }
        .illustration-container img {
            max-width: 100%;
            height: auto;
            /* Removed border-radius and box-shadow */
        }
        .quote-box {
            position: relative; /* For pseudo-elements */
            background-color: #FFFFFF; /* White background for quote box */
            border: 2px solid #E5E7EB; /* Subtle border */
            border-radius: 16px; /* Rounded corners */
            padding: 30px 40px; /* More padding */
            text-align: center;
            font-size: 1.9em; /* Larger font size */
            font-weight: 700; /* Bolder */
            color: #333;
            margin-bottom: 40px; /* More space below quote */
            line-height: 1.4;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07); /* Soft shadow */
            max-width: 450px; /* Limit width */
        }
        .quote-box::before, .quote-box::after {
            font-family: serif; /* Classic quote font */
            position: absolute;
            font-size: 5em; /* Larger quotes */
            color: #E0E7FF; /* Light blue-ish for quotes */
            opacity: 0.8;
            line-height: 0;
        }
        .quote-box::before {
            content: "“";
            top: -15px;
            left: 10px;
        }
        .quote-box::after {
            content: "”";
            bottom: -15px;
            right: 10px;
        }

        @media (min-width: 768px) {
            .container-wrapper {
                flex-direction: row;
                justify-content: center;
                align-items: center;
                padding: 40px; /* More padding on larger screens */
            }
            .booking-card {
                margin-right: 60px; /* More space between card and illustration */
                margin-top: -450px;
            }
            .illustration-container {
                display: flex;
            }
        }
    