.alert-success {
  display: none;
  padding: 15px;
  border-radius: 8px;
  background-color: #c3e6cb;
  border: 1px solid #c3e6cb;
  color: #155724;
  position: fixed;
  top: -65px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(-20px);
  /* opacity: 0; */
}

.alert-success.show {
  opacity: 1;
  z-index: 999;
  transform: translateY(0);
  top: 20px;
}

.alert-success svg {
  color: #28a745;
  margin-right: 10px;
}
