/* loader.css */
#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 8px solid #f3f3f3; /* Уменьшенная толщина границы */
  border-top: 8px solid #3FC0A3; /* Цвет лоадера */
  border-radius: 50%;
  width: 60px; /* Уменьшенная ширина */
  height: 60px; /* Уменьшенная высота */
  animation: spin 2s linear infinite;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Эффект сглаживания */
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Полупрозрачный белый фон */
  z-index: 9999;
}
