/* Стилове за BMI калкулатора */
#bmiResult, #bmiInterpretation {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Стилове за BMI скалата */
.bmi-scale {
  margin: 20px 0;
}

.bmi-bar {
  height: 30px;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

.bmi-segment {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bmi-label {
  font-size: 10px;
  font-weight: bold;
  color: white;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.underweight {
  background: linear-gradient(90deg, #dc3545, #e35d6a);
}

.normal {
  background: linear-gradient(90deg, #198754, #28a745);
}

.overweight {
  background: linear-gradient(90deg, #ffc107, #ffce3a);
}

.obese {
  background: linear-gradient(90deg, #dc3545, #c82333);
}

/* Адаптивни стилове за малки екрани */
@media (max-width: 768px) {
  #bmiResult, #bmiInterpretation {
    min-height: 200px;
  }
  
  .bmi-label {
    font-size: 8px;
    line-height: 1.2;
  }
  
  .bmi-bar {
    height: 40px;
    flex-direction: column;
  }
  
  .bmi-segment {
    width: 100% !important;
    height: auto;
  }
}