/* Canvas Theme CSS - NAIOMT/PRN */
body {
  font-family: Arial, sans-serif;
  color: #1B1B1B;
  background-color: #FFFFFF;
}

.progressContainer {
  position: sticky;
  top: 50px;
  background: #F5F8FA;
  padding: 10px 20px;
  z-index: 999;
}

.progressBar {
  width: 0%;
  height: 10px;
  background: #005A9E;
  border-radius: 5px;
  transition: width 0.4s ease;
}

.progressTrack {
  width: 100%;
  background: #E0E6ED;
  height: 10px;
  border-radius: 5px;
}

.progressItem {
  accent-color: #005A9E;
}

.progressItem:checked + label {
  color: #005A9E;
  font-weight: bold;
}
