.ap-sac-wrapper {
  margin: 24px 0;
  font-family: "Nunito", sans-serif;
}

.ap-sac-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 15px;
}

.ap-sac-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ap-sac-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-block;
}

.ap-sac-available {
  background: #7dbb6f;
}

.ap-sac-unavailable {
  background: #d96b6b;
}

.ap-sac-calendars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.ap-sac-month {
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.ap-sac-month-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ap-sac-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.ap-sac-weekdays {
  margin-bottom: 8px;
}

.ap-sac-cell {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
}

.ap-sac-weekday {
  font-weight: 700;
  color: #555;
  background: #f6f6f6;
}

.ap-sac-empty {
  background: transparent;
}

.ap-sac-day {
  border: 1px solid #eee;
  font-weight: 600;
}

.ap-sac-day-available {
  background: #eef8eb;
  color: #2f6d2f;
}

.ap-sac-day-unavailable {
  background: #fdecec;
  color: #9f2f2f;
}

.ap-sac-day:hover {
  transform: translateY(-1px);
  transition: 0.15s ease;
}

.ap-sac-day.ap-sac-today {
  outline: 2px solid #111827;
  border-color: #111827;
}