/* ALERT STYLED */
.alert {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  color: #ffd700;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
  z-index: 9999;
  animation: fadeOut 1s forwards;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

