.flash-msg {
  position: fixed;
  top: 112px;
  left: 50%;
  text-wrap: nowrap;
  transform: translateX(-50%);
  font-size: 18px;
  font-family: Arial, sans-serif;
  background-color: rgba(0, 0, 0, 0.8); /* Darker for better contrast */
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0.8;
  transition: opacity 1s ease-in-out;
  text-align: center;
  max-width: 90%;
  width: fit-content;
}

.flash-msg.fade-out {
  opacity: 0;
}
