.custom-progress-container {
  border: 2px solid #1a237e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 50px;
}

.custom-progress-bar {
  background-color: #4caf50;
  color: #1a237e;
  font-weight: bold;
  border-radius: 8px;
  white-space: nowrap;
  transition: width 0.5s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.progress-label {
  color: #1a237e;
  font-weight: bold;
  white-space: nowrap;
  font-size: 1.2rem;
  margin-left: 10px;
  width: 100%;
}

.custom-progress-text {
  margin-left: auto;
  margin-right: 20px;
  font-weight: 600;
  color: #1a237e;
  font-size: 1.2rem;
  text-align: center;
}
.custom-progress-text small {
  font-size: 1rem;
}

@media (max-width: 600px) {
  .progress-label,
  .custom-progress-text {
    font-size: 0.9rem;
  }
  .custom-progress-text small {
    font-size: 0.8rem;
  }
  .progress-label {
    margin-left: 5px;
  }
  .custom-progress-text {
    margin-right: 10px;
    right: 10px;
  }
}
