.navbar {
  background: #1c1c2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--accent);
}
.notification-wrapper {
  position: relative;
}
.notif-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  position: relative;
  cursor: pointer;
}
.notif-count {
  position: absolute;
  top: 0;
  right: -6px;
  background: red;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 5px;
  border-radius: 50%;
}
.notif-dropdown {
  position: absolute;
  top: 45px;
  right: 0;
  width: 280px;
  background: var(--card-bg);
  border: 1px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 0 10px #0008;
  max-height: 400px;
  overflow-y: auto;
  z-index: 999;
}
.notif-dropdown.hidden { display: none; }
.notif-list { padding: 10px; }
.notif-item {
  border-bottom: 1px solid #333;
  padding: 8px 5px;
  color: #eee;
}
.notif-item.critical { border-right: 4px solid #e74c3c; }
.notif-item.warning { border-right: 4px solid #f39c12; }
.notif-item:hover { background: #2a2a3a; }
