/* Estilos para Style 1 - Gauge con curva */
:root {
  --primary-color: #0070f3; /* Este valor será sobreescrito desde wp_head */
}

.kg-loan-calculator-wrapper.style1 .loan-calculator {
  max-width: 960px;
  margin: auto;
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.kg-loan-calculator-wrapper.style1 .loan-sliders {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.kg-loan-calculator-wrapper.style1 .loan-slider {
  flex: 1 1 30%;
  margin: 10px;
}

.kg-loan-calculator-wrapper.style1 .loan-slider label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.kg-loan-calculator-wrapper.style1 input[type="range"] {
  width: 100%;
  accent-color: var(--primary-color);
}

.kg-loan-calculator-wrapper.style1 .gauge-container {
  position: relative;
  margin-bottom: 10px;
}

.kg-loan-calculator-wrapper.style1 .value-display {
  position: absolute;
  width: 100%;
  top: 25px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.kg-loan-calculator-wrapper.style1 .payment-amount {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.kg-loan-calculator-wrapper.style1 .per {
  font-size: 16px;
  color: #555;
}

.kg-loan-calculator-wrapper.style1 .disclaimer {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

/* Responsive design para mobile */
@media (max-width: 768px) {
  .kg-loan-calculator-wrapper.style1 .loan-sliders {
    flex-direction: column;
    align-items: center;
  }

  .kg-loan-calculator-wrapper.style1 .loan-slider {
    width: 90%;
  }
}
