/* ===== ADMIN MODALS ===== */

.admin-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  animation: fadeIn 0.2s ease;
}

.admin-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.admin-modal-dialog {
  position: relative;
  max-width: 400px;
  width: 90%;
  animation: slideDown 0.3s ease;
}

.admin-modal-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.admin-modal-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.admin-modal-icon i {
  display: inline-block;
}

.admin-modal-message {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.admin-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.admin-modal-btn,
.admin-modal-confirm,
.admin-modal-cancel {
  min-width: 100px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
