/* ==========================================================================
   ✅ DASHBOARD-POPUP.CSS
   Descrizione: Stili per popup modali (es. conferma eliminazione prodotti)
   Consolidato: 14 Luglio 2025
   ========================================================================= */

.popup-eliminazione {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-eliminazione.hidden {
  display: none;
}

.popup-eliminazione .popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.popup-eliminazione .popup-content h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.popup-eliminazione .popup-content button {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.6rem 1rem;
  border: none;
  background-color: #0073aa;
  color: white;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.popup-eliminazione .popup-content button:hover {
  background-color: #005f8d;
}

.popup-eliminazione .popup-content .annulla {
  background-color: #888;
}

.popup-eliminazione .popup-content .annulla:hover {
  background-color: #555;
}