/* Notification Module Styles */
.notification-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dim);
  z-index: 9999; /* On top of everything */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.notification-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f5c842;
  transform: translateY(-2px);
  border-color: rgba(245, 200, 66, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.notification-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Hide when session is running */
body.session-running .notification-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.8) translateY(-20px);
}

.notif-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  background: #f5c842;
  color: #0a0a0f;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  box-shadow: 0 0 10px rgba(245, 200, 66, 0.4);
}

.notif-badge.empty {
  display: none;
}

/* ─── Hide floating bell at ≤1024px (replaced by sidebar icon) ─── */
@media (max-width: 1024px) {
  #notificationBtn {
    display: none !important;
  }
}
