/* Hide scrollbar in selected day chip rows on mobile */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Calendar day cells - aspect ratio guard for older browsers */
.day-cell {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tap-friendly hit area on mobile */
@media (max-width: 380px) {
  .day-cell { font-size: 12px; }
}

/* Smooth status pill animation */
.status-pill {
  transition: background-color 120ms ease, color 120ms ease;
}
