/* Стилове за хидратационния калкулатор */
#hydrationResult {
  transition: all 0.3s ease;
}

/* Стилове за информационните бутони */
.btn-info-tooltip {
  padding: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

/* Адаптивни стилове за малки екрани */
@media (max-width: 768px) {
  .hydration-calculator .col-md-3 {
    margin-bottom: 1rem;
  }
}

/* Стил за модалното съдържание */
.list-group-item {
  border: none;
  padding: 0.75rem 0.5rem;
}

/* Стилове за системата за напитки */
#todayDrinksList .card {
  border-left: 4px solid #4facfe;
}

#todayDrinksList .card:nth-child(2n) {
  border-left-color: #00f2fe;
}

#todayDrinksList .card:nth-child(3n) {
  border-left-color: #38f9d7;
}

/* Стилове за обобщението */
#totalHydration, #netHydration, #totalCalories, #totalSugar {
  transition: all 0.3s ease;
}

/* Адаптивни стилове за малки екрани */
@media (max-width: 768px) {
  #todayDrinksList .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  #todayDrinksList .text-end {
    text-align: left !important;
    margin: 0.5rem 0;
  }
  
  #todayDrinksList .ms-2 {
    margin-left: 0 !important;
    align-self: flex-end;
  }
}

/* Стилове за секцията със съвети */
.card-title {
  color: #2c3e50;
  font-weight: 600;
}

.card-text {
  color: #5a6a7e;
  line-height: 1.6;
}

/* Анимации при hover върху картите със съвети */
.hydration-tips .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(79, 172, 254, 0.1);
}

.hydration-tips .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(79, 172, 254, 0.15) !important;
}

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