.sfc_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem;
        }

        .sfc_booking_form {
            background: white;
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            padding: 1rem;
        }

        .sfc_form_grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1rem;
        }

        .sfc_col_3 {
            grid-column: span 3;
        }

        .sfc_col_4 {
            grid-column: span 4;
        }

        .sfc_col_2 {
            grid-column: span 2;
        }

        .sfc_form_group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .sfc_form_label {
            font-size: 0.875rem;
            color: #64748b;
        }

        .sfc_form_control {
            height: 56px;
            padding: 0 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            width: 100%;
            background: white;
        }

        .sfc_form_control:focus {
            outline: none;
            border-color: #4263eb;
        }

        .sfc_dropdown {
            position: relative;
        }

        .sfc_dropdown_toggle {
            cursor: pointer;
            text-align: left;
            width: 100%;
            background: white;
        }

        .sfc_dropdown_menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 320px;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            padding: 1rem;
            margin-top: 0.5rem;
            z-index: 1000;
        }

        .sfc_dropdown.sfc_active .sfc_dropdown_menu {
            display: block;
        }

        .sfc_counter_group {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .sfc_counter_group:last-child {
            margin-bottom: 0;
        }

        .sfc_counter_label {
            font-weight: 500;
        }

        .sfc_counter_sublabel {
            font-size: 0.875rem;
            color: #64748b;
        }

        .sfc_counter_controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .sfc_counter_btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #e0e0e0;
            background: white;
            color: #4263eb;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .sfc_counter_btn:hover {
            background: #f8f9fa;
            border-color: #4263eb;
        }

        .sfc_counter_value {
            font-weight: 500;
            min-width: 1rem;
            text-align: center;
        }

        .sfc_search_btn {
            height: 56px;
            width: 100%;
            background: #4263eb;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .sfc_search_btn:hover {
            background: #3651c9;
        }

        .sfc_search_icon {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 768px) {
            .sfc_form_grid {
                grid-template-columns: 1fr;
            }

            .sfc_col_3, .sfc_col_4, .sfc_col_2 {
                grid-column: span 1;
            }

            .sfc_dropdown_menu {
                width: 100%;
            }
        }