/* Alert wrapper */
.alert-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 320px;
}

.custom-alert {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
}

.custom-alert i {
  margin-right: 10px;
  font-size: 18px;
}

/* Alert types */
.alert-success {
  background-color: #28a745;
}

.alert-error {
  background-color: #dc3545;
}

.alert-warning {
  background-color: #ffc107;
  color: #212529;
}

.alert-info {
  background-color: #17a2b8;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
