#lye-water-section {
     width: 350px;       /* Or tweak to whatever looks good */
      flex: 0 0 400px;     /* Prevents flexbox from stretching it */
      max-width: 100%;
      background-color: #c8dcf2;
    }
 
 

/* 🔧 Remove spin buttons in number inputs */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* 🧪 Lye Section Card */
/*
.section-card {
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  max-width: 780px;         
  margin: 1rem auto;
  background-color: #f5f5f5;
  border: 1px solid #bbb;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  box-sizing: border-box;
  flex: 1 1 45%;
 }
*/
/* 📢 Section Heading */
.section-card h2 {
  text-align: center;
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  color: #2c3e50;
}

/* 🔄 Form container */
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* 🧮 Form row layout */
.form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* 🏷️ Label styling */
.form-group label {
  flex: 0 0 80px;
  text-align: left;
  font-weight: 500;
  font-size: 0.95rem;
  color: #444;
  white-space: nowrap;
}

/* ✏️ Input & Select styling */
.form-group input,
.form-group select {
  height: 32px;
  padding: 0.4rem 0.6rem;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: auto;
  min-width: 70px;
  
  text-align: right;
  box-sizing: border-box;

}

/* 🎯 Specific input tweak */
.form-group input[type="number"] {
  width: 80px;
}

/* ⬇️ Lye Type Dropdown */
#lye-type {
  width: 150px;
  height: 34px;
  font-size: 0.95rem;
  text-align: right;
}

/* 📑 Other dropdowns */
.form-group select:not(#lye-type) {
  width: 180px;
  height: 28px;
  font-size: 0.85rem;
  text-align: right;
}

/* 🎛️ Slider Bar */
/*
.slider-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.05rem;
  white-space: nowrap;
}

.slider-bar input[type="range"] {
  width: 80px;
  accent-color: #8e44ad;
}

.slider-bar span {
  font-weight: bold;
  color: #333;
}
*/


.slider-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

#superfat-value {
  font-size: 0.9rem;
  color: #333;

}



/* 🚫 Output field styling */
#batter-weight {
  background-color: #a9a9a9;
  font-weight:600;
  color: #555;
  cursor: default;
}

