        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

		.language-container {
            text-align: center;
            margin-bottom: 20px;
        }

		a {
			color: #cc6600; /* Set the text color to orange */
			text-decoration: none;
			font-weight: bold; /* Make the text bold */
		}

		a:hover {
			color: #FFA500; /* Change text color to a slightly different shade of orange on hover */
			text-decoration: underline; /* Add underline on hover */
		}

        .container {
			width: 100%;
			max-width: 400px;
			background-color: #fff;
			padding: 20px;
			box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
			border: 1px solid #ccc; /* Add a border */
			border-radius: 18px; /* Add border radius */
		}


        header {
            text-align: center;
            margin-bottom: 20px;
        }

        header img {
            max-width: 100px;
        }

        header h1 {
            font-size: 24px;
            margin-top: 10px;
            color: #034694;
        }

		header h2 {
            font-size: 18px;
            margin-top: 10px;
            color: #ed7014;
        }

		h1 {
            font-size: 22px;
            margin-top: 5px;
            color: #034694;
        }

		h2 {
    color: #333;
    margin: 6px;
    font-size: 22px;   /* Increase the font size for better visibility */
    background-color: #f0e68c; /* A lighter background color to avoid the button look */
    color: #333; /* Dark text color for better contrast */
    padding: 6px; /* Padding to give some space around the text */
    border-left: 5px solid #cc9900; /* A border to add a design element */
	border-right: 5px solid #cc9900; /* A border to add a design element */
    border-radius: 5px; /* Slightly rounded corners */
    text-align: center; /* Align text to the left */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}
		h3 {
    color: #333;
    margin: 6px;
    font-size: 16px;   /* Increase the font size for better visibility */
    background-color: #f0e68c; /* A lighter background color to avoid the button look */
    color: #333; /* Dark text color for better contrast */
    padding: 6px; /* Padding to give some space around the text */
    border-left: 5px solid #cc9900; /* A border to add a design element */
	border-right: 5px solid #cc9900; /* A border to add a design element */
    border-radius: 5px; /* Slightly rounded corners */
    text-align: center; /* Align text to the left */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
            color: #555;
        }

        input[type="date"],
        select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
        }

		#date-range {
            display: none; /* Hide the "Select Dates" input */
        }

		/* Center-align the label for the date range */
		label[for="date-range"] {
			display: block;
			text-align: center;
			margin: 0 auto;
			max-width: 100%;
		}


        /* Center-align the calendar */
        .flatpickr-calendar {
            margin: 0 auto;
            max-width: 100%; /* Occupy the same width as the "Verify" button */
        }


        .grouped-selects {
            display: flex;
            justify-content: space-between;
            align-items: flex-end; /* Align children select boxes to the bottom */
        }

        .grouped-selects .select {
            width: calc(50% - 5px); /* Adjust as needed with some spacing */
        }

        button {
            background-color: #008CBA;
            color: #fff;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        button:hover {
            background-color: #005d7b;
        }

        /* Add your additional styling as needed */

        @media (max-width: 768px) {
            .grouped-selects {
                flex-direction: column;
            }

            .grouped-selects .select {
                width: 100%;
            }
        }

        /* Hide available rooms container initially */
        #available-rooms-container {
            display: none;
        }

		/* Style for room details container */
.room {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Style for room name */
.room h2 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

/* Style for rate plan details */
.room strong {
    font-weight: bold;
    color: #007bff;
}

/* Style for date range and price */
.room p {
    font-size: 16px;
    color: #666;
    margin: 5px 0;
}

/* Style for the reserve link */
.reserve-link {
    color: #ed7014; /* Set the text color to orange */
    text-decoration: none;
    font-weight: bold; /* Make the text bold */
}

/* Style for the reserve link on hover */
.reserve-link:hover {
    color: #FFA500; /* Change text color to a slightly different shade of orange on hover */
    text-decoration: underline; /* Add underline on hover */
}

// Add this CSS class to style the Reserve button
.reserve-button {
    display: inline-block;
    background-color: #0BB457; /* Green background color */
    color: #fff; /* White text color */
    padding: 10px 20px; /* Add padding to the button */
    text-decoration: none; /* Remove underline */
    border: none; /* Remove border */
    border-radius: 4px; /* Add rounded corners */
    cursor: pointer; /* Show a pointer cursor on hover */
    font-weight: bold; /* Make the text bold */
    margin-top: 10px; /* Add some spacing between buttons */
}

// Style for the Reserve button on hover
.reserve-button:hover {
    background-color: #09A148; /* Slightly darker green on hover */
}

/* CSS for centering the image carousel */
.image-carousel {
    display: flex;
    justify-content: center;
    overflow: auto;
}

.no-availability-message {
    text-align: center;
    margin: 1em 0; /* Add margin for spacing and line break */
}


