.cgcb-booking {
  max-width: 980px;
  margin: 24px auto;
  padding: 24px;
  border: 1px solid #d9d4cb;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff9f0 0%, #ffffff 100%);
  box-shadow: 0 18px 50px rgba(61, 45, 24, 0.08);
}

.cgcb-panel h3 {
  margin-top: 0;
  color: #5f3c16;
}

.cgcb-calendar-panel {
  margin-top: 24px;
}

.cgcb-day-headings,
.cgcb-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.cgcb-day-headings {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #8b6c45;
}

.cgcb-day-headings span {
  text-align: center;
}

.cgcb-day-placeholder {
  min-height: 82px;
}

.cgcb-slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cgcb-day-button,
.cgcb-slot-button,
.cgcb-submit {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cgcb-day-button,
.cgcb-slot-button {
  padding: 12px 14px;
  background: #f3eadb;
  color: #3d2d18;
  text-align: left;
}

.cgcb-day-button strong,
.cgcb-day-button span,
.cgcb-slot-button span,
.cgcb-slot-button strong {
  display: block;
}

.cgcb-slot-button strong {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
}

.cgcb-day-button.is-active,
.cgcb-slot-button.is-active,
.cgcb-submit {
  background: #bf6c16;
  color: #fff;
  box-shadow: 0 10px 24px rgba(191, 108, 22, 0.25);
}

.cgcb-day-button:hover,
.cgcb-slot-button:hover,
.cgcb-submit:hover {
  transform: translateY(-1px);
}

.cgcb-day-button.is-disabled {
  background: #f2ede4;
  color: #b5a691;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}

.cgcb-day-button.is-disabled:hover {
  transform: none;
}

.cgcb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cgcb-form label span {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #5f3c16;
}

.cgcb-form input,
.cgcb-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccbba3;
  border-radius: 10px;
  background: #fffdf9;
}

.cgcb-submit {
  margin-top: 18px;
  padding: 14px 22px;
}

.cgcb-message {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 10px;
}

.cgcb-message-success {
  background: #e6f6ea;
  color: #1d5b2b;
}

.cgcb-message-error {
  background: #fdecea;
  color: #a12622;
}

@media (max-width: 767px) {
  .cgcb-form-grid {
    grid-template-columns: 1fr;
  }

  .cgcb-day-headings,
  .cgcb-days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
