/* Styles added dynamically to the estimate calories/protein action */
.estimate-food-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 72px;
  padding: 18px 22px !important;
  border-radius: 20px !important;
  border: 1px solid #cbd5e1 !important;
  background: linear-gradient(180deg, #f8fbff 0%, #e8eef6 100%) !important;
  color: #0b1730 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255,255,255,0.85) !important;
  font-weight: 900 !important;
  font-size: clamp(22px, 2vw, 28px) !important;
  letter-spacing: -0.02em;
  text-align: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.estimate-food-btn:hover,
.estimate-food-btn:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #edf4fb 100%) !important;
  border-color: #b8c6da !important;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255,255,255,0.95) !important;
  transform: translateY(-1px);
  outline: none;
}

.estimate-food-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255,255,255,0.85) !important;
}

.estimate-food-btn::before {
  content: "⚡";
  font-size: 20px;
  line-height: 1;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .estimate-food-btn {
    min-height: 64px;
    font-size: 20px !important;
    padding: 16px 18px !important;
    border-radius: 18px !important;
  }
}
