@charset "utf-8";
/* CSS Document */
/* WRAPPER */
.date {
  margin: auto;
  position: relative;
}

/* INPUT */
.t-datepicker {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.t-check-in, .t-check-out {
  flex: 1;
  padding: 14px;
}

.t-check-in { border-right: 1px solid #eee; }

.t-check-in.active,
.t-check-out.active {
  border: 2px solid #000;
  border-radius: 12px;
}

.label {
  font-size: 10px;
  color: #777;
  letter-spacing: 0.5px;
}

.value {
  font-size: 14px;
  font-weight: 500;
}

/* CALENDAR */
.calendar_fresh {
	position: absolute;
	top: 105%;
	right: 0;
	left: auto;
	width: 720px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	padding: 20px;
	display: none;
	overflow: hidden;
	z-index: 999;
	border: solid 2px black;
}

/* HEADER */
.header_cal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-btn:hover {
  background: #f2f2f2;
}

/* MONTHS */
.months {
  display: flex;
  gap: 32px;
  margin-top: 10px;
}

.month-block {
  flex: 1;
}

.month-title {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

/* GRID */
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

/* DAY */
.day {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.15s ease;
}
.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}

.weekday {
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 0;
}
/* HOVER */
.day:hover:not(.disabled) {
  background: #f2f2f2;
  border-radius: 50%;
  transform: scale(1.08);
}

/* DISABLED */
.day.disabled {
  color: #d0d0d0;
  cursor: not-allowed;
  pointer-events: none; /* 🔥 prevents hover + click */
  text-decoration: line-through; /* optional Airbnb feel */
  opacity: 0.6;
}

/* BLOCKED GAP */
.day.blocked-gap {
  background: repeating-linear-gradient(
    45deg,
    #eee,
    #eee 4px,
    #fff 4px,
    #fff 8px
  );
  color: #bbb;
}

/* PREVIEW */
.day.preview {
  background: #fde8ec;
}

/* FINAL RANGE */
.day.in-range {
  background: #67a2ae;
}

/* RANGE START & END */
.day.range-start,
.day.range-end {
  background: #a28a5e;
  color: #fff;
  z-index: 2;
}

.day.range-start {
  border-radius: 50% 0 0 50%;
}

.day.range-end {
  border-radius: 0 50% 50% 0;
}

/* SINGLE DAY */
.day.single {
  background: #ff385c;
  color: #fff;
  border-radius: 50%;
}

/* CONTINUOUS BACKGROUND FIX */
.day.in-range::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #a28a5e;
  z-index: -1;
}

/* FOOTER */
.footer_cal {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.footer_cal .btn-clear{
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.footer_cal .btn-close{
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

/* NIGHTS */
.nights {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .calendar_fresh {
    width: 100%;
  }

  .months {
    flex-direction: column;
    gap: 20px;
  }
}
#Villa {
	padding: 32px !important;
	border-radius: 12px !important;
}
#myguestselector .guest_select {
	padding: 32px !important;.range-start
	border-radius: 12px !important;
}
#submit_form_button_top .example_top {
	border-radius: 12px !important;
	padding: 5px !important;
	background: none !important
}
#submit_form_button_top	.example_top:hover {
	background: none !important
}

#submit_form_button_top .submitform input {
	border-radius: 12px !important;
	padding: 5px !important;
	height: auto !important;
}
#submit_form_button_top .submitform input {
	border-radius: 12px !important;
	padding: 20px !important;
	height: auto !important;
}