.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Tăng độ đậm của màu nền */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  border: 6px solid transparent; /* Tăng độ dày của border */
  border-top: 6px solid #ff5733; /* Đổi màu border-top */
  border-radius: 50%;
  width: 70px; /* Tăng kích thước của loader */
  height: 70px; /* Tăng kích thước của loader */
  animation: spin 0.8s linear infinite; /* Chậm lại hiệu ứng quay */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); /* Tăng độ mờ của shadow */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Hide the loader when content is loaded */
body.loaded .loader-container {
  display: none;
}
