.ng-idle-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(18, 22, 19, 0.45);
  backdrop-filter: blur(2px);
}

.ng-idle-card {
  width: min(380px, 100%);
  border: 1px solid;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(18, 22, 19, 0.22), 0 4px 14px rgba(18, 22, 19, 0.1);
  padding: 22px;
  text-align: center;
  animation: notification-enter 220ms cubic-bezier(.16, 1, .3, 1) both;
}

.ng-idle-ic {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border: 1px solid;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ng-idle-ic .lucide {
  width: 22px;
  height: 22px;
}

.ng-idle-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.ng-idle-msg {
  margin: 0 0 14px;
  color: var(--fg-2, #343935);
  font-size: 14.5px;
  line-height: 1.5;
}

.ng-idle-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin: 0 auto 20px;
  padding: 10px 24px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 34px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
  line-height: 1;
  animation: idle-timer-breathe 1.6s ease-in-out infinite;
}

.ng-idle-timer.is-ticking {
  animation: idle-timer-breathe 1.6s ease-in-out infinite, idle-timer-tick 380ms ease-out;
}

.ng-idle-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@keyframes idle-timer-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes idle-timer-tick {
  0% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
