#fcg-borrowing-power-calculator .fcg-calculator {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(12, 38, 65, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0C2641;
  border: 1px solid rgba(12, 38, 65, 0.1);
}

#fcg-borrowing-power-calculator h3 {
  color: #0C2641;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

#fcg-borrowing-power-calculator h4 {
  color: #0C2641;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

#fcg-borrowing-power-calculator .fcg-card {
  background: #ffffff;
  border: 1px solid rgba(12, 38, 65, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(12, 38, 65, 0.1);
}

#fcg-borrowing-power-calculator .fcg-form-group {
  margin-bottom: 32px;
}

#fcg-borrowing-power-calculator .fcg-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

#fcg-borrowing-power-calculator .fcg-label {
  color: #0C2641;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

#fcg-borrowing-power-calculator .fcg-form-label {
  color: #0C2641;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

#fcg-borrowing-power-calculator .fcg-input-display {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 8px 16px;
  gap: 8px;
  border: 1px solid rgba(12, 38, 65, 0.2);
  min-width: 140px;
}

#fcg-borrowing-power-calculator .fcg-text-input {
  border: none;
  background: transparent;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  width: 100px;
  outline: none;
}

#fcg-borrowing-power-calculator .fcg-input-prefix,
#fcg-borrowing-power-calculator .fcg-input-suffix {
  color: #666;
  font-weight: 600;
  font-size: 14px;
}

#fcg-borrowing-power-calculator .fcg-slider {
  width: 100%;
  height: 6px;
  background: rgba(12, 38, 65, 0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  border: none;
  margin: 16px 0 8px 0;
}

#fcg-borrowing-power-calculator .fcg-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #0C2641;
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(12, 38, 65, 0.2);
}

#fcg-borrowing-power-calculator .fcg-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

#fcg-borrowing-power-calculator .fcg-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(12, 38, 65, 0.6);
  margin-top: 4px;
}

#fcg-borrowing-power-calculator .fcg-input,
#fcg-borrowing-power-calculator select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(12, 38, 65, 0.2);
  border-radius: 8px;
  font-size: 16px;
  background: white;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#fcg-borrowing-power-calculator .fcg-input:focus,
#fcg-borrowing-power-calculator select:focus {
  outline: none;
  border-color: #0C2641;
  box-shadow: 0 0 0 3px rgba(12, 38, 65, 0.1);
}

#fcg-borrowing-power-calculator .fcg-button {
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 120px;
  background: #0C2641;
  color: white;
  border: 2px solid #0C2641;
}

#fcg-borrowing-power-calculator .fcg-button:hover {
  background: #1a3a5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 38, 65, 0.3);
}

#fcg-borrowing-power-calculator .fcg-button-outline {
  background: transparent;
  color: #0C2641;
  border: 2px solid #0C2641;
}

#fcg-borrowing-power-calculator .fcg-button-outline:hover {
  background: #0C2641;
  color: white;
}

#fcg-borrowing-power-calculator .fcg-step-wizard {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

#fcg-borrowing-power-calculator .fcg-step {
  display: flex;
  align-items: center;
}

#fcg-borrowing-power-calculator .fcg-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(12, 38, 65, 0.1);
  color: #0C2641;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

#fcg-borrowing-power-calculator .fcg-step-number.active {
  background: #0C2641;
  color: white;
  box-shadow: 0 4px 15px rgba(12, 38, 65, 0.3);
}

#fcg-borrowing-power-calculator .fcg-step-number.completed {
  background: #10b981;
  color: white;
}

#fcg-borrowing-power-calculator .fcg-results {
  background: #0C2641;
  color: white;
  border: 2px solid white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(12, 38, 65, 0.2);
}

#fcg-borrowing-power-calculator .fcg-results h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 16px;
}

#fcg-borrowing-power-calculator .fcg-results h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 12px;
}

#fcg-borrowing-power-calculator .fcg-results .amount {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin: 20px 0;
}

@media (max-width: 768px) {
  #fcg-borrowing-power-calculator .fcg-calculator {
    padding: 20px;
    margin: 10px;
  }
  
  #fcg-borrowing-power-calculator .fcg-card {
    padding: 20px;
  }
  
  #fcg-borrowing-power-calculator .fcg-step-wizard {
    gap: 8px;
  }
  
  #fcg-borrowing-power-calculator .fcg-step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  #fcg-borrowing-power-calculator .fcg-results .amount {
    font-size: 32px;
  }
}