/* Calendário público de disponibilidade */
.rm-avail-calendar {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px 14px;
  background: #fff;
}
.rm-avail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.rm-avail-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
}
.rm-avail-nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.rm-avail-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.rm-avail-weekdays,
.rm-avail-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.rm-avail-weekdays div {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  padding: 4px 0;
}
.rm-avail-day {
  aspect-ratio: 1;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  padding: 0;
}
.rm-avail-day.is-empty {
  visibility: hidden;
}
.rm-avail-day.is-past {
  color: #cbd5e1;
  font-weight: 500;
}
.rm-avail-day.is-free {
  background: #ecfdf5;
  color: #047857;
  cursor: pointer;
}
.rm-avail-day.is-free:hover {
  background: #d1fae5;
}
.rm-avail-day.is-busy {
  background: #fee2e2;
  color: #b91c1c;
  text-decoration: line-through;
  cursor: not-allowed;
}
.rm-avail-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: #64748b;
}
.rm-avail-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rm-avail-swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.rm-avail-swatch.free { background: #ecfdf5; border: 1px solid #6ee7b7; }
.rm-avail-swatch.busy { background: #fee2e2; border: 1px solid #fca5a5; }
