.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.33);
  -webkit-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -ms-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
  transition: all 0.35s ease-in;
  -webkit-transition: all 0.0001s ease-out;
  -moz-transition: all 0.0001s ease-out;
  -ms-transition: all 0.0001s ease-out;
  -o-transition: all 0.0001s ease-out;
  transition: all 0.0001s ease-out;
  animation-name: fadeOut;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-overlay.active {
  display: flex;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  fill: #FF9D1D;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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