/* ===== استایل اصلی محاسبه‌گر WAAD ESS ===== */

/* کانتینر اصلی */
#waad-calculator {
  font-family: inherit; /* فونت از قالب سایت */
  direction: rtl;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* تیترها */
#waad-calculator h2, 
#waad-calculator h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 1.5em;
}

/* برچسب‌ها */
#waad-calculator label {
  display: block;
  margin: 8px 0 4px;
  font-weight: bold;
  font-size: 0.95em;
}

/* فیلدها (Select و Input) */
#waad-calculator select,
#waad-calculator input[type="number"],
#waad-calculator input[type="text"] {
  width: 100%;
  padding: 4px 6px; /* کوچک‌تر شده */
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9em; /* جمع‌وجور */
  height: auto;
  font-family: inherit;
}

/* اسلایدرها */
#waad-calculator input[type="range"] {
  -webkit-appearance: none;
  height: 6px;
  background: #ddd;
  outline: none;
  border-radius: 4px;
}
#waad-calculator input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #3498db;
  border-radius: 50%;
  cursor: pointer;
}
#waad-calculator input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #3498db;
  border-radius: 50%;
  cursor: pointer;
}

/* دکمه‌ها */
#waad-calculator button {
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 6px 12px; /* کوچک‌تر شده */
  margin-top: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95em;
  font-family: inherit;
}
#waad-calculator button:hover {
  background-color: #2980b9;
}

/* جداکننده */
#waad-calculator hr {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

/* نتایج */
#calc-results {
  margin-top: 20px;
  padding: 15px;
  background: #f1f9ff;
  border: 1px solid #cce5ff;
  border-radius: 6px;
}
#calc-results h3 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 1.3em;
}
#calc-results table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.95em;
}
#calc-results th,
#calc-results td {
  border: 1px solid #ccc;
  padding: 6px; /* کوچک‌تر شده */
  text-align: center;
}
#calc-results th {
  background-color: #e9f5ff;
}

/* چک‌باکس‌ها */
#waad-calculator input[type="checkbox"] {
  width: auto;
  margin-left: 5px;
}

/* هشدار */
#extra-suggestion-row td {
  color: red;
  font-weight: bold;
  text-align: center;
}

/* تنظیمات خورشیدی */
#solar-settings {
  border: 1px dashed #ccc;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}

/* حالت موبایل */
@media (max-width: 768px) {
  #waad-calculator {
    padding: 15px;
    max-width: 95%;
  }
  #waad-calculator h2, 
  #waad-calculator h3 {
    font-size: 1.3em;
  }
  #waad-calculator label,
  #waad-calculator select,
  #waad-calculator input[type="number"],
  #waad-calculator input[type="text"],
  #waad-calculator button {
    font-size: 0.9em;
    padding: 5px;
  }
  #calc-results table,
  #calc-results th,
  #calc-results td {
    font-size: 0.85em;
    padding: 4px;
  }
}
