/* ═══════════════════════════════════════
   AlarmO'Clock — Duration Calculator Styles
   ═══════════════════════════════════════ */

/* ── NAV CLOCK ── */
.nav-clock { opacity: 1; transform: translateY(0); }

/* ── OPERATOR INDICATOR ── */
.dur-op-indicator {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 6px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .dur-op-indicator {
    align-self: center;
    margin-bottom: 0;
  }
}
