/* Loader container styling */
#loader-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the loader */
  z-index: 9999; /* Make sure it appears on top of everything */
  display: none; /* Hide by default, show during request */
  text-align: center;
}

/* Styling for the loader image */
#container img {
  width: 50px;
  height: 50px;
}

/* Content container styling */
#container {
  transition: filter 0.3s ease; /* Smooth transition for blur */
}

/* Add blur effect to the content container */
#container.blurred {
  filter: blur(5px); /* Apply blur to the container */
}
