.laf-calendar {
  background: #EEE3D6;
  border-radius: 10px;
  padding: 12px;
  max-width: 1100px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.laf-cal-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 14px;
  align-items: start;
}

@media (max-width: 900px) {
  .laf-cal-layout {
    grid-template-columns: 1fr;
  }
}

.laf-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.laf-cal-title {
  font-weight: 700;
}

.laf-cal-nav {
  border: 0;
  background: transparent;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  color: #B4BD62;
}

.laf-cal-status {
  min-height: 18px;
  margin: 6px 0 10px;
  font-size: 13px;
  color: #555;
}

.laf-cal-status.is-error {
  color: #b00020;
}

.laf-cal-grid {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.laf-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 12px;
  color: #666;
  font-weight: 600;
}

.laf-cal-dow > div {
  padding: 6px 8px;
}

.laf-cal-body {
  display: grid;
  gap: 6px;
}

.laf-cal-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.laf-cal-cell {
  display: grid;
  border: 0;
  border-radius: 50%;
  padding: 8px;
  min-height: 40px;
  aspect-ratio: 1/1;
  background: #fff;
  text-align: center;
  min-width: 0;
}

.laf-cal-cell {
  white-space: normal;
}

.laf-cal-cell > * {
  max-width: 100%;
}


.laf-cal-price,
.laf-cal-meta {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.laf-cal-cell.is-empty {
  background: #fafafa;
  border-style: dashed;
}

.laf-cal-cell[disabled] {
  cursor: default;
  opacity: 0.85;
}

.laf-cal-cell.is-clickable {
  cursor: pointer;
}

.laf-cal-cell.is-start-day {
  border-color: #d5d5d5;
}

.laf-cal-cell.is-available {
  background: #B4BD62;
}

.laf-cal-cell.is-booked {
  background: #FAD465;
}

.laf-cal-cell.is-unavailable {
  background: #fafafa;
  border-color: #e8e8e8;
}

.laf-cal-cell.is-selected {
  outline: 2px solid #111;
  outline-offset: 1px;
}

.laf-cal-daynum {
  font-weight: 700;
  font-size: 13px;
  color: #333;
}

.laf-cal-price {
  font-weight: 700;
  font-size: 8px;
}

.laf-cal-meta {
  font-size: 8px;
  font-weight: 700;
  color: #666;
}

/* Panel */
.laf-cal-panel {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  position: sticky;
  top: 12px;
}

@media (max-width: 900px) {
  .laf-cal-panel {
    position: relative;
    top: auto;
  }
}

.laf-panel-title {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
}

.laf-panel-empty {
  padding: 10px;
  border: 1px dashed #ddd;
  border-radius: 10px;
  background: #fafafa;
}

.laf-panel-hint {
  font-size: 13px;
  color: #555;
}

.laf-panel-selected-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.laf-panel-date-text {
  font-weight: 700;
}

.laf-panel-change-date {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  font-size: 13px;
}

.laf-panel-subtitle {
  font-weight: 700;
  margin: 8px 0;
  font-size: 13px;
  color: #333;
}

.laf-slot-list {
  display: grid;
  gap: 8px;
}

.laf-slot {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.laf-slot:hover {
  border-color: #d5d5d5;
}

.laf-slot.is-disabled,
.laf-slot:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.laf-slot.is-selected {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.laf-slot-main {
  display: grid;
  gap: 3px;
}

.laf-slot-name {
  font-weight: 800;
  font-size: 14px;
}

.laf-slot-range {
  font-size: 12px;
  color: #666;
}

.laf-slot-side {
  text-align: right;
  display: grid;
  gap: 6px;
  justify-items: end;
  min-width: 90px;
}

.laf-slot-price {
  font-weight: 900;
}

.laf-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #e5e5e5;
  background: #f7f7f7;
  color: #444;
}

.laf-badge--ok {
  background: #B4BD62;
}

.laf-badge--bad {
  background: #FAD465;
}

.laf-badge--muted {
  background: #fafafa;
  border-color: #e8e8e8;
}

.laf-panel-actions {
  margin-top: 12px;
}

.laf-panel-continue {
  width: 100%;
  border: 1px solid #B4BD62;
  background: #B4BD62;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}

.laf-panel-continue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.laf-slot-empty {
  font-size: 13px;
  color: #666;
  padding: 10px;
  border: 1px dashed #ddd;
  border-radius: 10px;
  background: #fafafa;
}

/* Form */
.laf-panel-form {
  margin-top: 12px;
  border-top: 1px solid #eee;
  padding-top: 12px;
  display: grid;
  gap: 12px;
}

.laf-form-section {
  display: grid;
  gap: 8px;
}

.laf-form-title {
  font-weight: 800;
  font-size: 13px;
  color: #333;
}

.laf-field {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: #444;
}

.laf-field input,
.laf-field textarea {
  width: 100%;
  border: 1px solid #EEE3D6;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 14px;
  background: #EEE3D6;
}

.laf-guests {
  display: grid;
  gap: 10px;
}

.laf-guest-row {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.laf-add-guest,
.laf-remove-guest {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}

.laf-terms {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.laf-form-actions {
  display: grid;
}

.laf-create-booking {
  width: 100%;
  border: 1px solid #B4BD62;
  background: #B4BD62;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}

.laf-form-msg {
  font-size: 13px;
  color: #555;
}

.laf-form-msg.is-error {
  color: #b00020;
}

.laf-proceed-payment{
  width: 100%;
  border: 2px solid #B4BD62;
  background: transparent;
  color: #B4BD62;
  text-decoration: underline;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}

.laf-additional-items{
  display: grid;
  gap: 8px;
}

.laf-checkbox-field{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.laf-checkbox-field input{
  margin: 0;
}

/* Add Ons */

.laf-addons-grid{
  display: grid;
  grid-row-gap: 16px;
  padding: 8px;
}

.laf-addon-row{
  background: #EEE3D6;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.laf-addon-name{
  font-weight: bold;
}

.laf-addon-desc{
  color: darkgray;
  margin-bottom: 8px;
  font-size: 0.8em;
}

.laf-addon-price{
  margin: 8px 0;
  font-weight: bold;
}

.laf-addon-qty input{
  border: 1px solid #e5e7eb;
}
<<<<<<< Updated upstream
<<<<<<< Updated upstream
=======
=======
>>>>>>> Stashed changes

.laf-checkbox-field span{
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 800;
  color: #333;
<<<<<<< Updated upstream
}
>>>>>>> Stashed changes
=======
}
>>>>>>> Stashed changes
