/* IMC page specific styles */

.imc-bar-container {
  width: 100%;
  height: 24px;
  background: linear-gradient(to right, 
    #8B0000 0%, 
    #8B0000 12.5%, 
    #FFA500 12.5%, 
    #FFA500 25%, 
    #22C55E 25%, 
    #22C55E 50%, 
    #F59E0B 50%, 
    #F59E0B 75%, 
    #EF4444 75%, 
    #EF4444 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.imc-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 12px;
  transition: width 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.imc-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #495163;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .imc-bar-labels {
    font-size: 0.7rem;
  }
}

