.epirions-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.epirions-alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 300px;
  max-width: 450px;
}

.epirions-alert-icon {
  font-size: 20px;
}

.epirions-alert-message {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

.epirions-alert-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
}

.epirions-alert-close:hover {
  color: #4b5563;
}

/* Tipos de alerta */
.epirions-alert-success .epirions-alert-content {
  border-left: 4px solid #10b981;
}

.epirions-alert-error .epirions-alert-content {
  border-left: 4px solid #ef4444;
}

.epirions-alert-warning .epirions-alert-content {
  border-left: 4px solid #f59e0b;
}

.epirions-alert-info .epirions-alert-content {
  border-left: 4px solid #E91E8C;
}