/**
 * dashboard.css
 * ------------------------------------------------------------
 * Styling specific to the dashboard's sidebar layout. Shared
 * look-and-feel (cards, fonts, theme colors) still comes from
 * style.css — this file only adds what the sidebar nav needs.
 * ------------------------------------------------------------
 */

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.nav-link-active {
  background-color: rgba(232, 163, 61, 0.15);
  color: #e8a33d;
  font-weight: 500;
}

/* Mini calendar cells (populated by dashboard.js) */
.cal-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  color: var(--text-muted);
}

.cal-day-today {
  background-color: #363b74;
  color: #ffffff;
  font-weight: 600;
}

.cal-day-has-task::after {
  content: "";
}
