 /* ── nav.css — shared bottom nav styles ─────────── */

/* Material Symbols icon class */
.ms {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Bottom nav — inactive state */
.bottom-nav-icon {
  color: #7a7b75;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  transition: color 0.2s ease;
}
.bottom-nav-label {
  color: #7a7b75;
  transition: color 0.2s ease;
}

/* Bottom nav — active state */
.bottom-nav-item.active .bottom-nav-icon {
  color: #3d6285;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.bottom-nav-item.active .bottom-nav-label {
  color: #3d6285;
}

/* Hover — desktop only, no scale */
@media (hover: hover) {
  .bottom-nav-item:not(.active):hover .bottom-nav-icon {
    color: #5e6059;
  }
  .bottom-nav-item:not(.active):hover .bottom-nav-label {
    color: #5e6059;
  }
}

/* Safe area for notched phones */
.safe-area-bottom {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}