.flash-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 500px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.flash-item {
  padding: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}

.flash-item p,
.flash-item li {
  color: #fff;
}

.flash-item.flash-notice {
  background-color: #51A550;
}

.flash-item.flash-alert {
  background-color: #FA1418;
}