.dosage-whey-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 25px;
  background-color: #FFFFFF;
  border-radius: 6px;
  color: #000;
  font-family: 'Open Sans', sans-serif;
}

.dosage-whey-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  margin: 0 0 15px 0;
  text-align: center;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.dosage-whey-description {
  font-size: 14px;
  color: #777777;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.dosage-whey-input-section {
  background-color: #F8F8F8;
  border-radius: 6px;
  padding: 25px;
  margin-bottom: 25px;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.dosage-whey-slider-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dosage-whey-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  text-align: center;
}

.dosage-whey-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.dosage-whey-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  background: #ddd;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.dosage-whey-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.dosage-whey-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.dosage-whey-icon-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.dosage-whey-icon-powder {
  flex-shrink: 0;
}

.dosage-whey-display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.dosage-whey-result {
  background-color: #FFFFFF;
  border: 2px solid #000;
  border-radius: 6px;
  padding: 25px;
  margin-bottom: 25px;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.dosage-whey-result-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dosage-whey-icon-water {
  flex-shrink: 0;
}

.dosage-whey-result-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.dosage-whey-result-label {
  font-size: 14px;
  color: #777777;
}

.dosage-whey-result-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #000;
  line-height: 1;
}

.dosage-whey-result-unit {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.dosage-whey-info {
  background-color: rgba(78, 157, 216, 0.05);
  border-radius: 6px;
  padding: 15px;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.dosage-whey-info-text {
  font-size: 14px;
  color: #000;
  margin: 0;
  line-height: 1.5;
}

.dosage-whey-info-text strong {
  color: #4E9DD8;
}

@media (max-width: 768px) {
  .dosage-whey-container {
    padding: 20px 15px;
  }
  
  .dosage-whey-title {
    font-size: 20px;
  }
  
  .dosage-whey-result-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .dosage-whey-icon-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .dosage-whey-result-value {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .dosage-whey-icon-powder {
    width: 60px;
    height: 39px;
  }
  
  .dosage-whey-icon-water {
    width: 28px;
    height: 39px;
  }
}

