.navbar {
    background-color: #34495e;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    color: white;
    position: relative;
    z-index: 3000;
}
.navbar a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
}
.navbar a:hover {
    color: #1abc9c;
}
.navbar a:last-child {
    margin-left: auto;
}
/* Dropdown notifiche con pulsante elimina */
.dropdown-menu-notifiche {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  width: 280px;
  display: none;
  z-index: 9999;
}
.dropdown-menu-notifiche.show { display: block; }
.dropdown-menu-notifiche li { padding: 8px 10px; display: flex; align-items: center; justify-content: space-between; }
.dropdown-menu-notifiche li a { flex: 1; color: #333; text-decoration: none; font-size: 14px; }
.dropdown-menu-notifiche li a:hover { text-decoration: underline; }
.no-notifiche { color: #777; font-size: 13px; }

.notifiche-actions { justify-content: center; border-bottom: 1px solid #eee; }
.btn-elimina-tutte {
  background: #ffecec;
  border: 1px solid #e06666;
  color: #a33;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.btn-elimina-tutte:hover { background: #fdd; }

.notifica-x {
  border: none;
  background: transparent;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: #999;
  margin-left: 6px;
}
.notifica-x:hover { color: #d00; }
