/* --- Alert Popup --- */
.dola-alert-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.dola-alert-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.dola-alert-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 400px;
  padding: 2rem 1.75rem 1.5rem;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.3s var(--ease-out-expo);
}

.dola-alert-overlay.active .dola-alert-card {
  transform: translateY(0) scale(1);
}

.dola-alert-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.dola-alert-icon.error {
  background: #fef2f2;
  color: #ef4444;
}

.dola-alert-icon.warning {
  background: #fffbeb;
  color: #f59e0b;
}

.dola-alert-icon.success {
  background: #ecfdf5;
  color: #10b981;
}

.dola-alert-icon.info {
  background: #ecfeff;
  color: #06b6d4;
}

.dola-alert-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.dola-alert-message {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.dola-alert-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.dola-alert-btn.primary {
  background: #0f172a;
  color: #fff;
}

.dola-alert-btn.primary:hover {
  background: #1e293b;
}