/* --- Global Unlock Modal --- */
#kidale-global-modal {
  position: fixed;
  inset: 0;
  display: none; /* κρύβεται by default */
  place-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
}

#kidale-global-modal.active {
  display: grid;
}

#kidale-global-modal .du-modal-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 320px;
  margin: auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#kidale-global-modal img {
  max-width: 64px;
  max-height: 64px;
  border-radius: 8px;
}
/* kidale-dressup-global.css ή στο ίδιο CSS */
#kidale-global-modal .du-btn {
  background: #dc2626; /* κόκκινο */
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

#kidale-global-modal .du-btn:hover {
  background: #b91c1c; /* πιο σκούρο κόκκινο στο hover */
}