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

.container {
	background: white;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	width: 100%;
	max-width: 1200px;
}

form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.form-group {
	margin: 10px;
	flex: 1;
	min-width: 150px;
}

.form-control {
	width: 100%;
}

button {
	background-color: #00c4cc;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}

button:hover {
	background-color: #00a3a6;
}

.habitacion {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.daterangepicker {
	width: 100%;
	max-width: 600px;
}

@media (max-width: 767px) {
	.daterangepicker {
		width: 100%;
		max-width: 100%;
		height: 100vh;
		display: flex;
		flex-direction: column;
	}
}
