.loading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
}

.loader-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #000000;
  border-left-color: #000000;
  border-right-color: #efefef;
  border-bottom-color: #efefef;
  animation: spin 1s linear infinite;
}

.loader-text {
  margin-top: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #333333;
  letter-spacing: 0.5px;
}

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