		/* Header Styles */
        header {
            background-color: #f5f5f5;
            padding: 20px 0;
            text-align: center;
        }

        header img {
            max-width: 200px;
        }

        /* Page Styles */
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            display: flex; /* Enable flex layout for map and form */
			flex-direction: column; /* Stack header, map, and form vertically */
        }

        /* Container for the map and form */
		.container {
			max-width: 1400px !important;
		}

		/* Container for the map */
		.map-container {
			padding-right: 20px; /* Add some spacing between map and form */
		}

		/* Map styles */
		.map {
			height: 800px;
			/* Other map styles... */
		}

		/* Container for the form */
		.form-container {
            width: 100%;
            margin: 0 auto;
            padding: 20px;
        }

        h1, h2, h3, h4 {
            color: #333;
			font-family: 'Public Sans', sans-serif;
        }

        /* Form Styles */
        form {
            background-color: #fff;
            border: 1px solid #ccc;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #666;
            white-space:nowrap;
        }

        input[type="text"],
        input[type="number"],
        select {
            width: 45%; /* Adjust the width as needed */
            padding: 10px;
            margin-right: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            display: inline-block;
        }

        button[type="button"],
        input[type="submit"] {
            background-color: #d9814f;
            box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.1), inset -1px -1px 3px rgba(0, 0, 0, 0.1);
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        button[type="button"]:hover,
        input[type="submit"]:hover {
            background-color: #c1673b; /* Darker orange on hover */
        }
        
        .main-divider {
            width: 50%;  
            height: 4px;  
            background-color: #f26b21;  
            margin-top: 10px; 
            margin-bottom: 25px;  
        }
		
				/* Add City button */
		#addCity {
			background-color: #95473d;
			border-color: #95473d;
		}

		#addCity:hover {
			background-color: #773931; /* Darker on hover */
		}
		
		#addCityModal {
			background-color: #95473d;
			border-color: #95473d;
		}

		#addCityModal:hover {
			background-color: #773931; /* Darker on hover */
		}
		
		#trashModal {
			background-color: grey;
			border-color: grey;
		}

		#trashModal:hover {
			background-color: darkgrey; /* Darker grey on hover */
		}

		/* Remove button */
		#removeCity {
			background-color: grey;
			border-color: grey;
		}

		#removeCity:hover {
			background-color: darkgrey; /* Darker grey on hover */
		}

		/* Space between the icon and the text */
		.btn i {
			margin-right: 5px;
		}

        /* City Styles */
        .city {
            border: 1px solid #ccc;
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between; /* Align city and nights fields on the same line */
        }
		/* Narrow the city and nights fields */
        .city-name {
			width: 48%;
		}
        .nights {
            width: 48%; /* Adjust the width as needed */
        }

        /* Journey Details Styles */
        .journey-details {
            margin-top: 10px;
            border-radius: 12px;
            background-color: #f4f4f4;
        }
		
		.city {
			display: flex;
			flex-direction: column;
			margin-bottom: 5px;
		}

		.city-inputs {
			display: flex;
			justify-content: space-between;
			align-items: center;
			/* width: 100%; */
			margin-bottom: 0px;
		}
		
		.padding-divider {
		    padding-top: 10px !important;
		}
		
		input[type="text"]#cityField {
			width: 70%;
		}
		
		input[type="number"]#nightField {
			width: 30%;
		}

		.journey-details {
			/* Style your journey details container as needed */
			margin-bottom: 10px;
			border: 1px solid #FFD580;
			padding-left: 10px;
		}

		/*.date-inputs {
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 60%; 
			margin-bottom: 0px;
		} */
		
		#mainDepartureDate {
			
			margin-bottom: 20px;
			/*width: 48%; /* Adjust the width as needed */
			box-sizing: border-box; /* Include padding and border in width calculation */
		}
		
		#mainEndDate {
			
			margin-bottom: 20px;
			/*width: 48%; /* Adjust the width as needed */
			box-sizing: border-box; /* Include padding and border in width calculation */
		}
		
		input[type="date"]#end_date {
			pointer-events: none; /* Disable mouse events - not clickable */
			height: 40px;
			border: none;
			border-radius: 20px;
			background-color: transparent; /* Transparent to show it's display-only */
			padding: 5px 10px; /* No left padding - no icon */
			width: 100%;
			min-width: 150px;
			cursor: default; /* Normal cursor, not pointer */
		}

		.form-explanation {
			
			margin-bottom: 20px;
			padding: 20px;
		}
		input[type="date"]#departure_date {
			height: 40px;
			border: none;
			border-radius: 20px; /* Adjust the radius as needed for the desired roundness */
			background-color: #f0f0f0; /* Light grey background color */
			padding: 5px 10px 5px 40px; /* Extra left padding for icon */
			width: 100%;
			min-width: 150px; /* Ensure minimum width for date display */
			cursor: pointer;
		}
		
		/* Date Input Wrapper */
		.date-input-wrapper {
			position: relative;
			display: inline-block;
			width: 100%;
			cursor: pointer;
		}
		
		.date-input-wrapper:hover {
			opacity: 0.9;
		}
		
		/* Calendar Icon */
		.date-icon {
			position: absolute;
			left: 12px;
			top: 50%;
			transform: translateY(-50%);
			color: #d9814f;
			font-size: 16px;
			pointer-events: none; /* Let clicks pass through to wrapper */
			z-index: 1;
		}
		
		/* Completely hide and remove default browser calendar icon */
		input[type="date"]::-webkit-calendar-picker-indicator {
			display: none !important;
			-webkit-appearance: none !important;
			appearance: none !important;
			background: none !important;
			width: 0 !important;
			height: 0 !important;
			padding: 0 !important;
			margin: 0 !important;
			position: absolute !important;
			opacity: 0 !important;
			pointer-events: none !important;
		}
		
		input[type="date"]::-webkit-inner-spin-button,
		input[type="date"]::-webkit-clear-button {
			display: none !important;
			-webkit-appearance: none !important;
		}
		
		input[type="date"]::-webkit-datetime-edit-fields-wrapper {
			padding: 0;
		}
		
		#cityLabel, #nightLabel {
			margin-top:10px;
			padding-right:10px;
		}
		
		#cityField {
			border: 2px solid #ccc; /* Adjust the border thickness as needed */
			border-radius: 10px; /* Adjust the radius as needed for the desired roundness */
			padding: 10px;
		}
		
		#nightField {
			border: 2px solid #ccc; /* Adjust the border thickness as needed */
			border-radius: 10px; /* Adjust the radius as needed for the desired roundness */
			padding: 10px;
		}
		
		/* CSS for the two-column layout */
		.journey-details-flex {
			display: flex; /* Enable flex layout */
			align-items: center; /* Vertically align content */
		}
		
		/* CSS for the two-column layout */
		/*.tripDatesOverview {*/
		/*	display: flex; /* Enable flex layout */
		/*	justify-content: space-between;*/
		/*}*/

		/* Style for the icon column */
		.journey-details-flex .icon {
			font-size: 24px; /* Adjust the font size as needed */
			margin-right: 20px; /* Add spacing between the icon and journey info */
			color: #007bff; /* Set the color of the icon */
		}
		
		.journey-info {
			display: flex;
		}
		
		.journey-info-transport {
			width: 60%; /* Adjust the width as needed */
		}
		
		/* CSS for the two-column layout */
		.city-info-flex {
			display: flex; /* Enable flex layout */
			align-items: center; /* Vertically align content */
			justify-content: center;
		}
		
		/* Style for the icon column */
		.city-info-flex .icon {
			font-size: 24px; /* Adjust the font size as needed */
			margin-right: 20px; /* Add spacing between the icon and journey info */
			color: #007bff; /* Set the color of the icon */
		}
		
		.city-info-icons {
			width: 100%; /* Adjust the width as needed */
			padding-top:4px;
			height:30px;
		}

		.journey-info-class {
			width: 40%; /* Adjust the width as needed */
		}
		
		.p-custom {
			margin-bottom: 0px !important;
			
		}

		.row {
			width: 100% !important; /* Adjust the width as needed */
		}
		
		.custom-width {
        width: 100px; /* Adjust the width as needed */
		}
		
		.bg-custom-light {
			background-color: #f5f5f5; /* Adjust the color code as needed */
		}
		
		.custom-icon-margin {
			margin-right: 10px; /* Adjust the margin value as needed */
		}
		
		.rounded {
			border-radius: 20px !important;
		}
		
		.divider {
			height: 5px;
			margin-bottom: 5px;
		}
		
		button.disabled {
			background-color: grey !important;
			color: #fff !important;
		}
		
		.form-scroll-container {
			max-height: 650px; /* Increased to show more cities at once */
			overflow-y: auto; /* Add vertical scrollbar if needed */
		}
		
		@media screen and (max-width: 768px) {
            .form-scroll-container {
                max-height: 800px; /* Set the maximum height you prefer */
			    overflow-y: auto; /* Add vertical scrollbar if needed */
            }
            #itineraryForm {
                padding: 0px;
                border: none !important;  /* Removes the border */
                box-shadow: none !important;
            }
            .main-divider {
                margin-left: auto;
                margin-right: auto;
            }
            .main-title {
                text-align: center;
            }
            
            .map {
			height: 500px;
			/* Other map styles... */
		    }
		    
		    .modal-form-content {
    			width: 100% !important; /* Set to half of the current width */
		    }
            
        }
        
        #nightLabel .text {
            display: inline; /* Show text */
        }
        
        #nightLabel .icon {
            display: none; /* Hide icon */
        }
        
        @media screen and (max-width: 768px) {
            #nightLabel .text {
                display: none; /* Hide text */
            }
        
            #nightLabel .icon {
                display: inline; /* Show icon */
            }
        }
        
        @media screen and (max-width: 768px) {
            #nightField {
                text-align: center;
            }
        }
		
		#openModalButton {
			width: 100%;
		}
		
		.custom-modal-width .modal-dialog {
			--bs-modal-width: 20%; /* Makes the modal half the width of the viewport on larger screens */
		}
		
		.modal-button-area {
			text-align: center;
			width: 100%;
			margin-top: 20px;
		}
		
		.modal-button {
			margin-bottom: 5px;
		}
		
		.small-font {
			font-size: 0.8em;
		}
		
		.with-calendar-icon::before {
			content: "";  /* No direct content, the icon will be a background */
			background-image: url('/images/calendar.png');  /* Path to your icon */
			background-size: contain;  /* Ensures the icon fits within the given dimensions */
			background-repeat: no-repeat;  /* Prevents the image from repeating */
			width: 16px;  /* Width of the icon */
			height: 16px;  /* Height of the icon */
			display: inline-block;  /* Allows for width and height specification */
			margin-right: 8px;  /* Space between the icon and the text */
			vertical-align: middle;  /* Align the icon with the text */
		}

		.with-edit-icon::before {
			content: "";  /* No direct content, the icon will be a background */
			content: url('/images/calendar.png');  /* Path to a different icon for the small font text */
			background-size: contain;  /* Ensures the icon fits within the given dimensions */
			background-repeat: no-repeat;  /* Prevents the image from repeating */
			width: 16px;  /* Width of the icon */
			height: 16px;  /* Height of the icon */
			display: inline-block;  /* Allows for width and height specification */
			margin-right: 8px;  /* Space between the icon and the text */
			vertical-align: middle;  /* Align the icon with the text */
		}
		
		/* Overall modal styling */
		#myModal {
			display: none; /* Initially hidden */
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.5); /* Black with a touch of transparency */
			z-index: 1000; /* To ensure the modal appears on top of other content */
			overflow-y: auto; /* To scroll if content is longer than screen height */
		}

		/* Modal content styling */
		.modal-form-content {
			background-color: #fefefe;
			margin: 5% auto; /* 5% from the top and centered */
			padding: 20px;
			border: 1px solid #888;
			width: 30%; /* Set to half of the current width */
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adding a subtle shadow */
			border-radius: 8px; /* Rounded corners */
			text-align: center;
		}

		/* Close button styling */
		.close {
			color: #aaa;
			float: right;
			font-size: 28px;
			font-weight: bold;
			cursor: pointer;
		}

		.close:hover,
		.close:focus {
			color: black;
			text-decoration: none;
			cursor: pointer;
		}

		/* Input and select fields styling */
		#modalForm input[type="text"],
		#modalForm input[type="email"],
		#modalForm input[type="tel"],
		#modalForm input[type="number"],
		#modalForm select {
			flex: 1;
			padding: 12px 20px;
			margin: 0;
			border: 1px solid #ccc;
			border-radius: 4px;
			box-sizing: border-box;
			font-size: 16px;
		}

		/* Button styling */
		#modalForm button {
			width: 100%;
			color: white;
			padding: 14px 20px;
			margin: 8px 0;
			border: none;
			border-radius: 4px;
			cursor: pointer;
			font-size: 16px;
			background-color: #d9814f;
            box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.1), inset -1px -1px 3px rgba(0, 0, 0, 0.1);
		}

		#modalForm button:hover {
			background-color: #c1673b;
		}

		/* Label styling */
		#modalForm label {
			margin-top: 12px;
			display: inline-flex;
			font-size: 16px;
			align-items: center;
		}
		
        .input-group {
            display: flex; /* Makes each div a flex container */
            align-items: center; /* Vertically aligns items in the center */
            margin-bottom: 10px; /* Reduced space between each row */
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        #modalForm .input-group label {
            flex: 1 0 30%; /* takes up 30% of the container width */
            margin-right: 5%; /* optional spacing between label and input */
        }
        
        #modalForm .input-group input, 
        #modalForm .input-group select {
            flex: 1 0 65%; /* takes up the remaining 65% of the container width */
        }
        
        .passengers {
            display: flex;
            justify-content: space-between; /* This will put some space between the two main sections */
            flex-direction: column;
        }
        
        .passengersOver18, .passengersUnder18 {
            display: flex;
            flex-direction: column; /* Stack children vertically */
        }
        
        .column {
            flex: 1;
            padding: 0 5px; /* Adding some padding for spacing */
        }
        
        .passengersOver18 > div:first-child, .passengersUnder18 > div:first-child {
            width: 100%;
            text-align: center;
            /* Removed padding-bottom to ensure consistent spacing */
        }

        .passengersOver18 label, .passengersUnder18 label,
        .passengersOver18 input, .passengersUnder18 input {
            display: block;
        }
        
        #passengersSection input[type="text"],
        input[type="number"],
        select {
            width: 80%; /* Adjust the width as needed */
        }
        
        #passengersSection label {
            display: flex;
            margin-top: 5px;
        }
        
        .comments-section {
            margin-top: 20px; /* Add some spacing from the previous elements */
        }
        
        #comments {
            width: 100%; /* Take up the full width of the form */
            padding: 10px; /* Add some padding inside the textarea */
            border: 1px solid #ccc; /* Give it a border */
            border-radius: 4px; /* Optional: Round the corners */
            resize: vertical; /* Allow vertical resizing, but not horizontal */
        }
        
        .info-icon {
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            display: inline-block;
            text-align: center;
        }
        
        .accordion-content-accommodation, .accordion-content-transport {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
            font-size:12px;
        }
        
        .whatsapp-section {
            background-color: #e6ffe6; /* Light green background */
            border: 1px solid #66cc66; /* Green border */
            padding: 10px;
            border-radius: 5px;
            margin-top: 10px;
            max-width: 100%; /* Ensure it doesn't overflow on smaller screens */
            box-sizing: border-box; /* Include padding in width calculation */
            text-align: left; /* Align content to the left */
            overflow: hidden; /* Prevent overflow of content */
        }
        
        .whatsapp-label {
            display: block;
            font-weight: bold;
            color: #339933;
            margin-bottom: 5px;
            max-width: 100%; /* Contain within box */
            white-space: normal; /* Allow text to wrap to new line if needed */
        }
        
        .whatsapp-option {
            display: flex;
            align-items: center;
            gap: 5px; /* Space between checkbox and label */
            flex-wrap: wrap; /* Allows items to wrap on smaller screens */
            width: 100%; /* Ensures it uses full width of container */
            justify-content: flex-start; /* Align items to the left */
        }
        
        .whatsapp-option input[type="checkbox"] {
            margin: 0; /* Reset default margin */
        }
        
        .whatsapp-option label {
            display: flex;
            align-items: center;
            gap: 5px; /* Consistent spacing with checkbox */
            font-weight: bold;
            color: #333;
            flex: 1; /* Allow label to take available space */
            text-align: left; /* Align text to the left */
            white-space: normal; /* Wrap text if needed */
        }
        
        .whatsapp-option label::before {
            content: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'); /* WhatsApp logo */
            width: 20px;
            height: 20px;
            margin-right: 5px; /* Add space between icon and text */
        }
        
        /* Responsive adjustments */
        @media (max-width: 600px) {
            .whatsapp-option {
                flex-direction: row; /* Keep checkbox and label on the same line */
            }
        }
        
        /* Hide mobile text on larger screens and show desktop text */
        .desktop-text {
            display: none;
        }
        
        .mobile-text {
            display: inline;
        }
        
        @media (min-width: 768px) {
            /* On desktop, show desktop text and hide mobile text */
            .desktop-text {
                display: inline;
            }
        
            .mobile-text {
                display: none;
            }
        }

        /* Accommodation Section Styles */
        .accommodation-section {
            margin-bottom: 25px;
        }

        .accommodation-section > label {
            display: block;
            margin-bottom: 12px;
            font-size: 16px;
            color: #333;
        }

        .accommodation-primary-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }

        .accommodation-primary-card {
            position: relative;
            display: block;
            border: 2px solid #ddd;
            border-radius: 12px;
            padding: 14px 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #fff;
            text-align: center;
        }

        .accommodation-primary-card input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .accommodation-primary-card:hover {
            border-color: #d9814f;
            background-color: #fff5f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .accommodation-primary-card:has(input[type="radio"]:checked) {
            border-color: #d9814f;
            background-color: #fff5f0;
            box-shadow: 0 4px 8px rgba(241, 106, 32, 0.2);
        }

        .primary-card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .accommodation-icon {
            font-size: 28px;
            color: #d9814f;
            margin-bottom: 2px;
        }

        .primary-card-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }

        .primary-card-subtitle {
            font-size: 11px;
            color: #666;
        }

        .accommodation-secondary-options {
            margin-bottom: 15px;
        }

        .secondary-label {
            display: block;
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }

        .secondary-options-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .accommodation-secondary-card {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #ddd;
            border-radius: 8px;
            padding: 8px 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #fff;
            min-height: 52px;
        }

        .accommodation-secondary-card input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .accommodation-secondary-card:hover {
            border-color: #d9814f;
            background-color: #fff5f0;
        }

        .accommodation-secondary-card:has(input[type="radio"]:checked) {
            border-color: #d9814f;
            background-color: #fff5f0;
        }

        .secondary-card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 4px;
        }

        .secondary-card-title {
            font-size: 14px;
            font-weight: bold;
            color: #333;
        }

        .secondary-card-desc {
            font-size: 10px;
            color: #888;
            line-height: 1.2;
        }

        .accommodation-secondary-card:has(input[type="radio"]:checked) .secondary-card-title {
            color: #d9814f;
        }

        .secondary-card-text {
            font-size: 14px;
            color: #333;
            text-align: center;
        }

        .accommodation-secondary-card:has(input[type="radio"]:checked) .secondary-card-text {
            color: #d9814f;
        }

        .star-small {
            font-size: 10px;
            margin-left: 1px;
            color: #d9814f;
        }

        /* Transport Section Styles */
        .transport-section {
            margin-bottom: 25px;
        }

        .transport-section > label {
            display: block;
            margin-bottom: 12px;
            font-size: 16px;
            color: #333;
        }

        .transport-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 10px;
        }

        .transport-card {
            position: relative;
            display: block;
            border: 2px solid #ddd;
            border-radius: 12px;
            padding: 14px 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #fff;
            text-align: center;
        }

        .transport-card input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .transport-card:hover {
            border-color: #d9814f;
            background-color: #fff5f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .transport-card:has(input[type="radio"]:checked) {
            border-color: #d9814f;
            background-color: #fff5f0;
            box-shadow: 0 4px 8px rgba(241, 106, 32, 0.2);
        }

        .transport-card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .transport-icon {
            font-size: 24px;
            color: #d9814f;
            margin-bottom: 2px;
        }

        .transport-card-title {
            font-size: 15px;
            font-weight: bold;
            color: #333;
        }

        .transport-card-subtitle {
            font-size: 10px;
            color: #666;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .accommodation-primary-options,
            .transport-options {
                grid-template-columns: 1fr;
            }

            .secondary-options-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Budget Section Styles */
        .budget-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }

        .budget-header label {
            margin: 0;
        }

        .budget-explainer {
            font-size: 12px;
            color: #888;
            margin: 0 0 10px 0;
            font-style: italic;
            text-align: left;
        }

        .budget-notsure {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .budget-notsure input[type="checkbox"] {
            margin: 0;
        }

        .budget-notsure label {
            margin: 0;
            font-size: 14px;
            color: #666;
            cursor: pointer;
        }

        .budget-slider-container {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }

        .budget-labels {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 12px;
            color: #666;
        }

        .budget-label-left,
        .budget-label-right {
            font-style: italic;
        }

        #budgetSlider {
            width: 100%;
            height: 8px;
            border-radius: 5px;
            background: linear-gradient(to right, #d9814f 0%, #c1673b 100%);
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }

        #budgetSlider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid #d9814f;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        #budgetSlider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid #d9814f;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .budget-value {
            text-align: center;
            margin-top: 10px;
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        /* Booking Timeline Section */
        .booking-timeline-section {
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .booking-timeline-section label {
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .timeline-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .timeline-option {
            flex: 1;
            min-width: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #fff;
        }

        .timeline-option:hover {
            border-color: #d9814f;
            background-color: #fff5f0;
        }

        .timeline-option input[type="radio"] {
            display: none;
        }

        .timeline-option input[type="radio"]:checked + span {
            color: #d9814f;
            font-weight: bold;
        }

        .timeline-option input[type="radio"]:checked ~ * {
            border-color: #d9814f;
        }

        .timeline-option:has(input[type="radio"]:checked) {
            border-color: #d9814f;
            background-color: #fff5f0;
        }

        .timeline-option span {
            font-size: 14px;
            color: #333;
            text-align: center;
        }

        /* Flexibility Section */
        .flexibility-section {
            margin-top: 12px;
            margin-bottom: 12px;
        }

        .flexibility-section > label {
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .flex-subsection {
            margin-bottom: 12px;
        }

        .flex-subsection-label {
            display: block;
            font-size: 14px;
            color: #666;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .flexibility-cards {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .flexibility-card-compact {
            position: relative;
            display: flex;
            align-items: center;
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #fff;
            overflow: hidden;
            height: 42px;
        }

        .flexibility-card-compact input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .flexibility-card-compact:hover {
            border-color: #d9814f;
            background-color: #fff5f0;
        }

        .flexibility-card-compact:has(input[type="radio"]:checked) {
            border-color: #d9814f;
            background-color: #fff5f0;
        }

        .flex-card-ribbon {
            position: relative;
            width: 90px;
            height: 100%;
            background: linear-gradient(135deg, #d9814f 0%, #e8a576 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 13px;
            flex-shrink: 0;
        }

        .flex-card-ribbon::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 0;
            width: 0;
            height: 0;
            border-left: 15px solid #e8a576;
            border-top: 21px solid transparent;
            border-bottom: 21px solid transparent;
        }

        .flexibility-card-compact:has(input[type="radio"]:checked) .flex-card-ribbon {
            background: linear-gradient(135deg, #c1673b 0%, #d9814f 100%);
        }

        .flexibility-card-compact:has(input[type="radio"]:checked) .flex-card-ribbon::after {
            border-left-color: #d9814f;
        }

        .flex-card-text {
            flex: 1;
            padding: 0 15px;
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }

        .flexibility-card-compact:has(input[type="radio"]:checked) .flex-card-text {
            color: #d9814f;
            font-weight: bold;
        }

        /* Dual Range Slider Styles */
        .date-range-container,
        .length-range-container {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }

        .slider-value-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }

        .slider-value-display {
            text-align: center;
            font-size: 14px;
            font-weight: bold;
            color: #333;
            flex: 0 0 auto;
        }

        .slider-label-left,
        .slider-label-right {
            font-size: 12px;
            color: #999;
            font-style: italic;
            flex: 0 0 auto;
        }

        .dual-slider-container {
            position: relative;
            height: 32px;
            margin: 0;
            padding: 12px 12px;
        }

        .slider-track {
            position: absolute;
            height: 8px;
            background: #ddd;
            border-radius: 4px;
            top: 50%;
            transform: translateY(-50%);
            left: 12px;
            right: 12px;
        }

        .slider-range {
            position: absolute;
            height: 8px;
            background: linear-gradient(to right, #d9814f 0%, #c1673b 100%);
            border-radius: 4px;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
        }

        .dual-slider {
            position: absolute;
            width: calc(100% - 24px);
            height: 8px;
            top: 50%;
            transform: translateY(-50%);
            left: 12px;
            background: transparent;
            pointer-events: none;
            -webkit-appearance: none;
            appearance: none;
        }

        .dual-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 0;
            height: 0;
            cursor: pointer;
            pointer-events: all;
            position: relative;
            z-index: 4;
            border: none;
            margin-top: -8px; /* Center 16px tall arrows on 8px track */
        }

        .dual-slider::-moz-range-thumb {
            width: 0;
            height: 0;
            cursor: pointer;
            pointer-events: all;
            z-index: 4;
            border: none;
            background: transparent;
        }

        /* Left slider (min) - left-pointing arrow */
        .dual-slider-min::-webkit-slider-thumb {
            margin-left: -18px;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 10px solid #d9814f;
            filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
        }

        .dual-slider-min::-moz-range-thumb {
            margin-left: -18px;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 10px solid #d9814f;
            filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
        }

        /* Right slider (max) - right-pointing arrow */
        .dual-slider-max::-webkit-slider-thumb {
            margin-left: 18px;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 10px solid #d9814f;
            filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
        }

        .dual-slider-max::-moz-range-thumb {
            margin-left: 18px;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 10px solid #d9814f;
            filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
        }

        .dual-slider::-webkit-slider-runnable-track {
            width: 100%;
            height: 8px;
            background: transparent;
            border-radius: 4px;
        }

        .dual-slider::-moz-range-track {
            width: 100%;
            height: 8px;
            background: transparent;
            border-radius: 4px;
        }

        /* Active state for better visibility */
        .dual-slider-min:active::-webkit-slider-thumb {
            border-right-color: #c1673b;
        }

        .dual-slider-max:active::-webkit-slider-thumb {
            border-left-color: #c1673b;
        }

        .dual-slider-min {
            z-index: 2; /* Lower than max by default */
        }

        .dual-slider-max {
            z-index: 4; /* Higher than min - easier to grab when stacked */
        }

        .dual-slider-min:active,
        .dual-slider-min:hover {
            z-index: 5; /* Bring to front when interacting */
        }

        .dual-slider-max:active,
        .dual-slider-max:hover {
            z-index: 5; /* Same level when interacting */
        }

        /* Responsive adjustments for new sections */
        @media (max-width: 768px) {
            .timeline-options {
                flex-direction: column;
            }

            .timeline-option {
                width: 100%;
            }

            .budget-labels {
                font-size: 11px;
            }

            .flex-card-ribbon {
                width: 75px;
                font-size: 12px;
            }

            .flex-card-text {
                font-size: 13px;
                padding: 0 12px;
            }
        }






/* Carousel for Destinations */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flexibility-cards-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.carousel-card {
    display: none;
}

.carousel-card.active {
    display: flex !important;
}

.carousel-btn {
    background: #d9814f;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: #c1673b;
}

/* Inline timeline options */
.timeline-options-inline {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.timeline-options-inline .timeline-option {
    flex: 1;
    max-width: 150px;
}

/* Toggle Switch for Flexible Date */
.flexible-date-toggle-container {
    margin-top: 10px;
    display: none; /* Hidden by default until date selected */
}

.toggle-switch {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 10px;
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-slider-round {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.toggle-slider-round:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch input[type="checkbox"]:checked + .toggle-slider-round {
    background-color: #d9814f;
}

.toggle-switch input[type="checkbox"]:checked + .toggle-slider-round:before {
    transform: translateX(20px);
}

.toggle-label {
    font-size: 14px;
    color: #333;
}

/* Date Flexibility Slider Container */
#dateFlexibilitySlider {
    width: 100%;
    margin-top: 15px;
}

/* Destination Flexibility Toggles */
.destination-flexibility-section {
    display: none; /* Hidden by default until first city entered */
    flex-direction: column;
    gap: 1px;
    margin: 0;
}

.destination-flexibility-section.visible {
    display: flex;
}

.destination-toggle-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    gap: 10px;
}

.destination-toggle-option:hover {
    background: #ebebeb;
}

.destination-toggle-option input[type="checkbox"] {
    display: none;
}

.destination-toggle-option .toggle-slider-round {
    flex-shrink: 0;
}

/* Checked state for destination toggles */
.destination-toggle-option input[type="checkbox"]:checked + .toggle-slider-round {
    background-color: #d9814f;
}

.destination-toggle-option input[type="checkbox"]:checked + .toggle-slider-round:before {
    transform: translateX(20px);
}

.destination-toggle-text {
    font-size: 14px;
    color: #333;
}

/* Stylized Number Inputs with +/- buttons */
.passenger-input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.passenger-input-row label {
    font-size: 14px;
    color: #666;
    flex: 0 0 auto;
}

.number-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.number-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: #d9814f;
    color: white;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    padding: 0;
    line-height: 1;
}

.number-btn:hover {
    background: #c1673b;
}

.number-input-group input[type="number"] {
    width: 50px;
    height: 30px;
    text-align: center;
    border: none;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 4px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    -moz-appearance: textfield;
}

.number-input-group input[type="number"]::-webkit-outer-spin-button,
.number-input-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Reduce spacing in passenger section */
.passengers {
    margin-top: 15px;
}

.passengersOver18,
.passengersUnder18 {
    margin-bottom: 0;
}

.comments-section {
    margin-top: 20px;
}

.booking-timeline-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Preferences validation error styling */
#preferencesError {
    font-weight: 500;
    padding: 10px 15px;
    background-color: #ffebee;
    border-radius: 6px;
    border-left: 4px solid #d32f2f;
}

.accommodation-section,
.transport-section {
    transition: border 0.3s ease;
}

/* City Autocomplete Dropdown */
.city-autocomplete-dropdown {
    position: fixed;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 10000;
    /* Position and width set dynamically in JS */
}

.autocomplete-section-header {
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    background: #f9f9f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid #eee;
}

.autocomplete-section-header:first-child {
    border-top: none;
}

.autocomplete-item {
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    color: #333;
}

.autocomplete-item:hover,
.autocomplete-item.autocomplete-selected {
    background: #f5f5f5;
}

.autocomplete-item strong {
    color: #d9814f;
    font-weight: 600;
}

.autocomplete-custom {
    font-style: italic;
    color: #666;
}

.city-inputs {
    position: relative;
}

/* Adjust city input to work with dropdown */
.city-name {
    position: relative;
    z-index: 1;
}

/* Stacked Timeline Options */
.timeline-options-stacked {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%;
}

.timeline-option-stacked {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.timeline-option-stacked:hover {
    border-color: #d9814f;
    background-color: #fff5f0;
}

.timeline-option-stacked input[type="radio"] {
    margin-right: 12px;
    accent-color: #d9814f;
}

.timeline-option-stacked input[type="radio"]:checked + span {
    color: #d9814f;
    font-weight: bold;
}

.timeline-option-stacked:has(input[type="radio"]:checked) {
    border-color: #d9814f;
    background-color: #fff5f0;
}

.timeline-option-stacked span {
    font-size: 14px;
    color: #333;
}

/* Option B: City Adding UI Improvements */

/* Compact Nights Display with Moon Icon and +/- Buttons */
.nights-compact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nights-compact .moon-icon {
    color: #d9814f;
    font-size: 18px;
}

.nights-compact input.nights {
    width: 60px;
    padding: 8px;
    border: 2px solid #ccc;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
}

/* Nights with +/- buttons for committed cities */
.nights-with-controls {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nights-with-controls .moon-icon {
    color: #d9814f;
    font-size: 18px;
    margin-right: 4px;
}

.nights-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #d9814f;
    background: white;
    color: #d9814f;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nights-btn:hover {
    background: #d9814f;
    color: white;
}

.nights-btn:active {
    transform: scale(0.95);
}

.nights-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

/* City Preview Container */
.city-preview-container {
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.city-inputs-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.city-inputs-preview input.city-name {
    flex: 1;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
}

/* Journey Preview Box */
.journey-preview-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.journey-preview-box.loading {
    opacity: 0.6;
    font-style: italic;
}

/* Preview Buttons */
.preview-buttons {
    display: flex;
    gap: 8px;
}

.btn-preview-journey,
.btn-add-to-itinerary,
.btn-add-another-city {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-preview-journey {
    background: #95473d;
    color: white;
}

.btn-preview-journey:hover {
    background: #7a3830;
    transform: translateY(-1px);
}

.btn-add-to-itinerary {
    background: #d9814f;
    color: white;
}

.btn-add-to-itinerary:hover {
    background: #c06d3d;
    transform: translateY(-1px);
}

.btn-add-another-city {
    background: #95473d;
    color: white;
    width: 100%;
}

.btn-add-another-city:hover {
    background: #7a3830;
    transform: translateY(-1px);
}

/* Committed Cities - Distinct Styling */
.city.committed {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
}

.city.committed .city-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.city.committed .city-name {
    flex: 1;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    pointer-events: none;
}

/* Disabled state for city preview */
.city-preview-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.city-preview-disabled input {
    cursor: not-allowed;
}

.city-preview-disabled button {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Red highlight for info message */
#form-explanation.highlight-red {
    background-color: #ffe6e6 !important;
    border: 2px solid #d9534f;
    animation: pulse-red 0.5s;
}

@keyframes pulse-red {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Ensure city names don't get cut off by nights controls */
.city.committed .city-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.city.committed .city-name {
    flex: 1;
    min-width: 0; /* Allow text to shrink */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Header with title and logo */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-logo img {
    height: 50px;
}

.header-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .header-title {
        font-size: 20px;
    }
    .header-logo img {
        height: 40px;
    }
}

/* Remove Last City button styling */
.btn-remove-last-city {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    background: #d9534f;
    color: white;
    justify-content: center;
}

.btn-remove-last-city:hover {
    background: #c9302c;
    transform: translateY(-1px);
}

/* Advanced Preferences Accordion */
.advanced-preferences-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.advanced-preferences-toggle {
    width: 100%;
    padding: 12px 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.advanced-preferences-toggle:hover {
    background: #ebebeb;
}

.advanced-preferences-toggle i {
    transition: transform 0.3s ease;
    color: #666;
}

.advanced-preferences-toggle.open i {
    transform: rotate(180deg);
}

.advanced-preferences-content {
    padding: 16px 16px 16px 0;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-top: -1px;
    position: relative;
}

.advanced-pref-group {
    margin-bottom: 16px;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.advanced-pref-group:last-child {
    margin-bottom: 0;
}

.advanced-pref-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    padding-left: 5px;
    margin-left: 0 !important;
    text-align: left !important;
}

.advanced-pref-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0 !important;
    padding: 0 !important;
}

.checkbox-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    padding: 4px 0 4px 31px;
    margin: 0 !important;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #d9814f;
    flex-shrink: 0;
    margin: 0;
}

.checkbox-option span {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.checkbox-option:hover {
    background: transparent;
}

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



/* Country code dropdown compact width override */
select.country-code-compact,
#modalCountryCode.country-code-compact {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    flex: 0 0 100px !important;
    flex-basis: 100px !important;
}

/* Hide native calendar icon in Firefox and other browsers - without breaking functionality */
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

input[type="date"]::-moz-calendar-picker-indicator {
    display: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* Ensure the custom icon is visible */
.date-icon {
    pointer-events: auto;
}

/* Ultra-aggressive Firefox date icon removal - without breaking functionality */
#departure_date::-moz-calendar-picker-indicator,
#end_date::-moz-calendar-picker-indicator {
    display: none !important;
    opacity: 0 !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
}
