/* Progress bar styles */
.progress-container {
  width: 100%;
  height: 6px;
  background-color: rgba(74, 127, 154, 0.2);
  border-radius: 3px;
  margin: 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #4A7F9A !important;
  border-radius: 3px;
  width: 0;
  transition: width 0.5s ease-in-out;
}

/* Ensure the progress bar has color */
#indexing-progress {
  background-color: #4A7F9A !important;
}

.small-text {
  font-size: 10px;
  margin-top: 5px;
  color: #999;
}

.progress-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
} 