/* ===== Catasto Verification — Toast only ===== */
/* Il pannello floating e' stato rimosso. Le verifiche appaiono
   nel dropdown notifiche dell'header (campanella). */

/* Toast notification (basso destra, non invadente) */
.verif-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #890103;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  z-index: 1300;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.verif-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Stili per le verifiche dentro il dropdown notifiche */
.verif-notif-item {
  transition: background .2s;
  color: #333;
}
.verif-notif-item * {
  color: inherit;
}
.verif-notif-item .verif-notif-title {
  color: #890103;
  font-weight: 600;
}
.verif-notif-item .verif-notif-status {
  color: #666;
  font-size: 11px;
}
.verif-notif-item:hover {
  background: #fdf0f0 !important;
}
