.vrbo-pro-wrapper {
  display: flex;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto 24px auto;
  flex-wrap: wrap;
}
.vrbo-pro-cal-col {
  min-width: 360px;
  max-width: 410px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(54,79,98,0.07);
  padding: 18px 18px 8px 18px;
}
.vrbo-pro-form-col {
  min-width: 310px;
  flex: 1;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(54,79,98,0.07);
  padding: 22px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vrbo-pro-form label {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 9px;
}
.vrbo-pro-form input[type="text"],
.vrbo-pro-form input[type="email"],
.vrbo-pro-form input[type="number"],
.vrbo-pro-form input[type="tel"],
.vrbo-pro-form input[type="date"],
.vrbo-pro-form textarea,
.vrbo-pro-form select {
  display: block;
  margin-top: 3px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  padding: 8px 10px;
  background: #fafbfc;
  margin-bottom: 13px;
  transition: border-color 0.2s;
}
.vrbo-pro-form input:focus,
.vrbo-pro-form textarea:focus,
.vrbo-pro-form select:focus {
  border-color: #29c86c;
  outline: none;
}
.vrbo-pro-form textarea {
  min-height: 75px;
  resize: vertical;
}
.vrbo-pro-green-btn {
  background: #29c86c;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 17px;
  padding: 10px 0;
  width: 100%;
  margin-top: 9px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.vrbo-pro-green-btn:hover {
  background: #179c4f;
}
.vrbo-pro-success {
  margin: 14px 0 7px 0;
  background: #dff5e4;
  color: #299d5b;
  border: 1px solid #b3e9c2;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 16px;
}
.vrbo-pro-form input[type="checkbox"] {
  width: auto;
  margin-right: 7px;
}

#vrbo-pro-calendar {
  margin: 0 auto 0 auto;
  max-width: 375px;
}

.vrbo-calendar-table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
}
.vrbo-calendar-table th {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  padding: 7px 0;
  background: #f2f6f7;
  border-bottom: 1.5px solid #e1e5e7;
  letter-spacing: .5px;
}
.vrbo-calendar-table td {
  width: 14.2%;
  height: 46px;
  text-align: center;
  font-size: 15px;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  background: #fff;
  transition: background 0.15s;
}
.vrbo-calendar-table td.vrbo-day-reserved {
  background: #fa3a4d !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 8px;
}
.vrbo-calendar-table td.vrbo-day-selected {
  background: #29c86c !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 8px;
}
.vrbo-calendar-table td.vrbo-day-today {
  border: 1.5px solid #29c86c;
  background: #f7fff9;
  color: #299d5b;
}
.vrbo-calendar-table td:hover:not(.vrbo-day-reserved) {
  background: #e6faee;
}
.vrbo-calendar-table td.vrbo-other-month {
  background: #fafbfc;
  color: #bcc0c6;
  cursor: default;
}
.vrbo-calendar-table tr {
  background: #fff;
}
.vrbo-calendar-table td.vrbo-day-reserved.vrbo-day-selected {
  background: #cc2937 !important;
}

.vrbo-calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 18px 0;
  font-size: 18px;
}
.vrbo-calendar-nav button {
  background: #f2f6f7;
  color: #3b3b3b;
  border: none;
  border-radius: 5px;
  padding: 7px 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.17s;
}
.vrbo-calendar-nav button:hover {
  background: #e1e5e7;
}

@media (max-width: 850px) {
  .vrbo-pro-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .vrbo-pro-cal-col, .vrbo-pro-form-col {
    min-width: 0;
    max-width: 100%;
    padding: 16px;
  }
}
