.container {
    display: flex;
    flex-wrap: wrap;
    /* width: 100%; */
    max-width: 100%;
    padding: 10px;
}
.form-container {
    width: 60%;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
}
label {
    display: block;
    margin: 5px 0 5px;
    font-size: 13px;
}
input[type="text"],input[type="date"],select, .form-container button{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 13px;
}
.form-container button {
    background-color: #f0c14b;
    border-color: #f0c14b;
    cursor: pointer;
}
.form-container button:hover {
    background-color: #e7b220;
}
.results {
    margin-top: 20px;
}
.hotel{
    display: flex;
    align-items: center;
    background-color: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.hotel:hover{
    background-color: #f9f9f9;
}
.hotel img{
    width: 150px;
    height: auto;
    border-radius: 5px;
    margin-right: 20px;
}
.hotel h3 {
    font-size: 18px;
    color: #333;
}
.hotel p{
    color: #555;
}
#map{
    height: 400px;
    width: 100%;
    border-radius: 8px;
}
.side-panel{
    width: 35%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    height: 920px;
}
.children-ages{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.children-ages select{
    width: 90%;
    margin: 5px 0;
}
.form-row{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row .form-field{
    flex: 1;
}
.form-row .form-field input,
.form-row .form-field select{
    width: 100%;
}
.form-field label{
    margin-bottom: 5px;
}
.error{
    color: red;
    font-size: 12px;
}
.filter-section{
    margin-top: 20px;
}
.filter-section h3{
    margin-bottom: 10px;
}
.hotel-container .slider{
    display: flex;
    height: 400px;
}
.slick-prev{
	z-index: 999999;
    left: 0px !important;
    width: 30px !important;
    height: 30px !important;
}
.slick-next{
	z-index: 999999;
    right: 0px !important;
    width: 30px !important;
    height: 30px !important;
}
.slick-next:before, .slick-prev:before {
    font-size: 30px !important;
}