/* Стилове за калкулатора за сън */
#sleepResult, #bedtimeResult {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Стилове за графиката на циклите на съня */
#sleepCycleChart {
  max-height: 300px;
}

/* Адаптивни стилове за малки екрани */
@media (max-width: 768px) {
  #sleepResult, #bedtimeResult {
    min-height: 150px;
  }
  
  .sleep-tips .d-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .sleep-tips .rounded-circle {
    margin-bottom: 1rem;
    margin-right: 0 !important;
  }
}