/* Agendamento — calendário mensal + listagem de horas do dia selecionado */

.agd-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.agd-legend__item { display: flex; align-items: center; gap: 6px; font-size: 12.2px; font-weight: 600; color: var(--slate-600); }

.agd-dot { flex: none; width: 9px; height: 9px; border-radius: 999px; display: inline-block; }
.agd-dots { display: flex; gap: 3px; margin-top: 2px; }

.agd-cell { cursor: pointer; }
.agd-cell:hover { border-color: var(--slate-300); }
.agd-cell--selected { border-color: var(--blue-600); box-shadow: inset 0 0 0 1px var(--blue-600); }
.agd-count { font-size: 9.5px; color: var(--slate-400); margin-top: auto; }

.agd-day { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px 18px; margin-top: 16px; }
.agd-day__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.agd-day__head h3 { margin: 0; font-size: 15px; text-transform: capitalize; }

.agd-hours { display: flex; flex-direction: column; border-top: 1px solid var(--slate-100); }
.agd-hour-row { display: grid; grid-template-columns: 56px 1fr; gap: 10px; border-bottom: 1px solid var(--slate-100); min-height: 40px; }
.agd-hour-label { padding: 8px 0; font-size: 11px; font-weight: 700; color: var(--slate-400); }
.agd-hour-slot { padding: 6px 0; display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.agd-hour-slot:hover { background: var(--bg-input); }

.agd-chip { border-radius: 8px; padding: 5px 9px; cursor: pointer; }
.agd-chip b { display: block; font-size: 12px; color: var(--slate-900); }
.agd-chip span { display: block; font-size: 11px; color: var(--slate-600); margin-top: 1px; }
.agd-chip__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.agd-chip__tag { font-size: 9.5px; font-weight: 700; padding: 1px 6px; border-radius: 999px; }

@media (max-width: 720px) {
  .agd-hour-row { grid-template-columns: 44px 1fr; }
}
