.alert-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 15px;
  background: #f9fafb;
  border-left: 5px solid;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.35s ease-out;
}

.alert-icon i {
  font-size: 26px;
}

.alert-text p {
  margin: 4px 0 0 0;
  opacity: 0.85;
  line-height: 1.3;
}

.alert-success {
  background: #ecfdf5;
  border-left-color: #10b981;
  color: #065f46;
}

.alert-success i {
  color: #059669;
}

.alert-warning {
  background: #fffbeb;
  border-left-color: #f59e0b;
  color: #92400e;
}

.alert-warning i {
  color: #d97706;
}

.alert-error {
  background: #fef2f2;
  border-left-color: #ef4444;
  color: #991b1b;
}

.alert-error i {
  color: #dc2626;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
