.elementor-1435 .elementor-element.elementor-element-426aec1{--display:flex;overflow:visible;}.elementor-1435 .elementor-element.elementor-element-6530592{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-1435 .elementor-element.elementor-element-6530592.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1435 .elementor-element.elementor-element-8bb1aa6 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-1435 .elementor-element.elementor-element-6530592{--width:100.179%;}}/* Start custom CSS for html, class: .elementor-element-8bb1aa6 *//* ==== الحقول ==== */
.calculator-container input[type="number"] {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
  border-radius: 6px;
  margin-bottom: 10px !important; /* بدل المسافات الكبيرة */
  padding: 8px 10px;
}

.calculator-container input[type="number"]:focus {
  border-color: #388e3c;
  box-shadow: 0 0 6px rgba(56, 142, 60, 0.3);
  background-color: #f1f8e9;
  outline: none;
}

/* ==== تصغير التباعد بين كل حقل والتاني ==== */
.input-section {
  margin-bottom: 10px !important;
}

/* ==== رمز SAR ==== */
.calculator-container .sar-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.85;
  margin-right: 4px;
}

/* ==== نتائج المحاكاة ==== */
.results-summary {
  border: 2px solid #c8e6c9;
  background: #f9fff9;
  animation: fadeIn 0.6s ease-in-out;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

/* تنسيق النقاط بدون علامة صح */
.results-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.results-summary ul li {
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.results-summary ul li:hover {
  background-color: #e8f5e9;
}

/* إزالة علامة ✔️ */
.results-summary ul li::before {
  display: none;
}

/* ==== العنوان ==== */
.section-title {
  font-size: 24px;
  text-align: center;
  color: #1a237e;
  margin-bottom: 20px;
  transition: color 0.4s, transform 0.4s;
}

.section-title:hover {
  color: #2e7d32;
  transform: scale(1.04);
}

/* ==== دخول ناعم ==== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ==== دعم الموبايل ==== */
@media (max-width: 600px) {
  .calculator-container {
    padding: 15px;
    margin: 20px 10px;
    border-radius: 10px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .input-with-icon {
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
  }

  .input-section label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .input-with-icon input {
    font-size: 14px;
    padding: 6px 8px;
  }

  .sar-icon {
    width: 16px;
    height: 16px;
  }

  .results-summary {
    padding: 12px;
    margin-top: 20px;
  }

  .results-summary h3 {
    font-size: 16px;
  }

  .results-summary li {
    font-size: 14px;
    padding: 5px 8px;
  }

  .deduction-status {
    font-size: 14px;
  }
}/* End custom CSS */