/* ===== Modal generale ===== */
.uk-modal.uk-open {
  background: rgba(0, 0, 0, 0.4); /* sfondo semi-trasparente */
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease-out;
}

/* ===== Contenitore dialog ===== */
.uk-modal-dialog {
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  max-width: 380px;
  width: 90%;
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
}

/* ===== Corpo ===== */
.uk-alert-primary {
  padding: 20px 25px;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  color: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #f5faff;
  border: 2px solid #095091; /* azzurro UIkit */
}

.uk-modal-dialog .uk-modal-body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

/* ===== Icona ===== */
.uk-modal-body .fa {
  font-size: 28px;
  color: #095091;
  margin-right: 12px;
}

/* ===== Testo ===== */
.uk-modal-content {
  flex: 1;
  font-weight: 500;
}

/* ===== Animazioni ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}