.eab-wrap {
  --eab-bg: #f4ead7;
  --eab-panel: #fffaf1;
  --eab-border: #6e5c43;
  --eab-text: #2e2417;
  --eab-accent: #6f7d49;
  --eab-accent-2: #9a6c3f;
  --eab-busy: #7b4f2c;
  --eab-free: #4d6b3c;
  --eab-highlight: #d9c2a3;
  color: var(--eab-text);
  font-family: Arial, sans-serif;
}
.eab-shell {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
}
.eab-panel {
  background: var(--eab-panel);
  border: 2px solid var(--eab-border);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(46, 36, 23, 0.08);
}
.eab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.eab-header h2, .eab-booking-panel h3 {
  margin: 0;
  color: var(--eab-text);
}
.eab-nav, .eab-submit, .eab-slot, .eab-day {
  border: 2px solid var(--eab-border);
  border-radius: 12px;
  background: #fff;
  color: var(--eab-text);
  cursor: pointer;
}
.eab-nav {
  width: 42px;
  height: 42px;
  background: var(--eab-highlight);
  font-weight: bold;
}
.eab-weekdays,
.eab-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.45rem;
}
.eab-weekdays {
  margin: 1rem 0 0.5rem;
  font-weight: bold;
  text-align: center;
}
.eab-day {
  min-height: 74px;
  padding: 0.5rem 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
}
.eab-day-num {
  font-size: 1rem;
  font-weight: 700;
}
.eab-day-state {
  font-size: 0.85rem;
  font-weight: 700;
}
.eab-free {
  background: #edf5e7;
  border-color: var(--eab-free);
}
.eab-busy {
  background: #f5eae2;
  border-color: var(--eab-busy);
}
.eab-day.is-active {
  outline: 3px solid #000;
}
.eab-empty {
  visibility: hidden;
}
.eab-legend {
  margin-top: 0.75rem;
  font-weight: 700;
}
.eab-dot {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  margin: 0 0.25rem 0 1rem;
}
.eab-dot:first-child {
  margin-left: 0;
}
.eab-dot.eab-free { background: var(--eab-free); }
.eab-dot.eab-busy { background: var(--eab-busy); }
.eab-slots { min-height: 60px; }
.eab-slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.eab-slot {
  padding: 0.75rem 0.9rem;
  background: #fbf5ea;
  font-weight: 700;
}
.eab-slot.is-active,
.eab-submit {
  background: var(--eab-accent);
  color: #fff;
}
.eab-form label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.eab-form label span {
  display: block;
  margin-bottom: 0.25rem;
}
.eab-form input,
.eab-form select,
.eab-form textarea {
  width: 100%;
  border: 2px solid var(--eab-border);
  border-radius: 10px;
  padding: 0.75rem;
  background: #fffef9;
  color: var(--eab-text);
}
.eab-submit {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 700;
}
.eab-message {
  margin-top: 0.8rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .eab-shell { grid-template-columns: 1fr; }
}
