/* ===================
   Calendar Layout
=================== */
.calendar-container.desktop-layout {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
}

@media (min-width: 601px) {
	.month-wrapper {
		flex: 1;
		max-width: 48%;
		padding: 0 10px;
	}
}

@media (max-width: 600px) {
	.calendar-container {
		display: flex;
		flex-direction: column;
	}

	.month-wrapper {
		width: 100%;
		padding: 0;
	}
}

/* ===================
   Calendar Wrapper
=================== */
.calendar-wrapper.desktop {
	display: none;
	position: relative;
	margin-top: 0;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 10px;
	z-index: 1000;
	min-width: 650px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.4s ease;
	opacity: 0;
}

.calendar-wrapper.desktop.show {
	display: block;
	max-height: 1000px;
	opacity: 1;
}

.calendar-wrapper.modal {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 60px;
	left: 10px;
	right: 10px;
	background: #fff;
	z-index: 1000;
	border-radius: 5px;
	max-height: 80vh;
	overflow: hidden;
	border: 1px solid #e84c3d;
}

.calendar-scrollable {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 10px;
}

/* ===================
   Date Box & Trigger
=================== */
.calendar-trigger {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

#combined-box {
	background: white;
	border: 1px solid #ccc;
	padding: 10px 10px;
	font-size: 15px;
	border-radius: 5px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	min-width: 200px;
	/* height: 40px; */
	text-align: center;
	transition: box-shadow 0.2s ease-in-out;
}

#saveBookingButton {
    padding: 10px 10px;
    font-size: 15px;
    min-width: 200px;
	border-radius: 5px;
}

#combined-box:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===================
   Month Styling
=================== */
.month h3 {
	text-align: center;
	margin: 10px 0;
}

/* ===================
   Days and Dates Grid
=================== */
.days,
.dates {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
}

.days div,
.dates div {
	padding: 10px 0;
	min-height: 40px;
	box-sizing: border-box;
}

/* ===================
   Navigation Arrows
=================== */
.nav-arrow {
	position: absolute;
	top: 10px;
	font-size: 20px;
	cursor: pointer;
	padding: 5px;
	user-select: none;
	z-index: 10;
}

.nav-arrow.left {
	left: 10px;
}

.nav-arrow.right {
	right: 10px;
}

/* ===================
   State Styling
=================== */
.booked {
	background-color: #ccc;
	color: white;
	pointer-events: none;
	border-radius: 6px;
}

.selected {
	background-color: red;
	color: white;
	border-radius: 6px;
}

/* ===================
   Footer (Mobile)
=================== */
.calendar-footer {
	padding: 10px;
	border-top: 1px solid #eee;
	background: #fff;
	text-align: center;
}

.calendar-footer .date-box {
	margin-bottom: 10px;
	font-weight: bold;
}

.calendar-footer .select-btn {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	font-weight: bold;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

.calendar-footer .select-btn:hover {
	background-color: #0056b3;
}


.selected {
	background-color: red;
	color: white;
	border-radius: 6px;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.selected:hover {
	transform: scale(1.05);
}

.selected {
	background-color: red;
	color: white;
	border-radius: 6px;
}

.hover-preview {
	background-color: rgba(255, 0, 0, 0.2);
	border-radius: 6px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-preview:hover {
	transform: scale(1.1);
	box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.booked {
	background-color: black;
	color: white;
	pointer-events: none;
	border-radius: 6px;
}

.past-date {
	background-color: #555;
	color: white;
	pointer-events: none;
	border-radius: 6px;
}







#calendar-desktop {
  position: relative;
  z-index: 9999;
}

.quick-booking{
  margin-top: 0px;
  padding: 0px 10px;
  border-radius: 10px;
  background: #fff;
}

.quick-booking__row{
  display: flex;
  gap: 10px;
  align-items: center;
}

.quick-booking__dates{
  flex: 1;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 5px;
  padding: 10px 12px;
  text-align: center;
}

.quick-booking__cta{
  white-space: nowrap;
  border-radius: 5px;
  padding: 10px 10px;
  background-color: #e84c3d;
  border:0px !important;
  color:#fff;
}

@media (max-width: 600px){
  .quick-booking__row{
    flex-direction: column;
    align-items: stretch;
  }
  .quick-booking__cta{
    width: 100%;
  }
}




