/* Asigură-te că pre-loader-ul acoperă tot ecranul și este deasupra celorlalte elemente */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1f2937;
  /* bg-gray-800 */
  z-index: 9999;
  transition: opacity 0.5s ease-out;
  /* Efect de dispariție */
}

/* Stil pentru animația de încărcare */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.animate-pulse-slow {
  animation: pulse 1.5s ease-in-out infinite;
}
