/* Styles for Business Loan Early Payoff Calculator */
.calcufacil-business_loan_early_payoff.calcufacil-container {
    max-width: 850px; margin: 25px auto; background: #f9f9f9; padding: 25px;
    border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex; flex-direction: row; flex-wrap: wrap; gap: 30px;
    font-family: 'Roboto', 'Arial', sans-serif; border: 1px solid #004D40; /* Dark Green for Finance */
    box-sizing: border-box;
}
.calcufacil-business_loan_early_payoff.calcufacil-container *,
.calcufacil-business_loan_early_payoff.calcufacil-container *::before,
.calcufacil-business_loan_early_payoff.calcufacil-container *::after { box-sizing: border-box; }

.calcufacil-business_loan_early_payoff h2 {
    width: 100%; text-align: center; color: #004D40; /* Dark Green */
    margin-top:0; margin-bottom: 10px; font-size: 1.7em; font-weight:500;
}
.calcufacil-business_loan_early_payoff h3 {
    color: #00695C; /* Medium Green */
    font-size: 1.25em; margin-top: 25px; margin-bottom: 12px;
    border-bottom: 1px solid #A5D6A7; padding-bottom: 6px; font-weight: 500;
}
.calcufacil-business_loan_early_payoff .calcufacil-left.calculator-form {
    flex: 1.2; min-width: 360px; padding: 20px; background-color: #fff;
    border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid #E8F5E9;
}
.calcufacil-business_loan_early_payoff .calcufacil-right.results {
    flex: 1; min-width: 320px; background: #E8F5E9; /* Lightest Green */
    padding: 25px; border-radius: 8px; border: 1px solid #C8E6C9; /* Light Green */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); display: flex; flex-direction: column;
    justify-content: flex-start; align-items: center;
}

.calcufacil-business_loan_early_payoff .input-group { margin-bottom: 16px; }
.calcufacil-business_loan_early_payoff label {
    display: block; font-weight: 500; color: #1B5E20; /* Dark Green */
    margin-bottom: 6px; font-size: 0.9em;
}
.calcufacil-business_loan_early_payoff input[type="text"],
.calcufacil-business_loan_early_payoff input[type="number"] {
    width: 100%; padding: 10px 14px; border: 1px solid #81C784; /* Medium Light Green */
    border-radius: 5px; font-size: 1em; background: #F1F8E9; font-family: inherit;
}
.calcufacil-business_loan_early_payoff input[type="text"]:focus,
.calcufacil-business_loan_early_payoff input[type="number"]:focus {
    border-color: #388E3C; box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.2); outline: none;
}
.calcufacil-business_loan_early_payoff .small-note { font-size: 0.8em; color: #2E7D32; margin-top:4px; line-height: 1.3;}


.calcufacil-business_loan_early_payoff button[type="submit"] {
    background-color: #388E3C; /* Dark Green */ color: #fff; padding: 12px 25px;
    border: none; border-radius: 5px; cursor: pointer; font-size: 1.1em;
    width: 100%; transition: background-color 0.2s ease, box-shadow 0.2s ease; font-weight: 500; margin-top:15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.calcufacil-business_loan_early_payoff button[type="submit"]:hover { background-color: #2E7D32; box-shadow: 0 4px 8px rgba(0,0,0,0.15); }

/* Results Styling */
.calcufacil-business_loan_early_payoff .results-header h2 { color: #1B5E20; margin-bottom: 20px; font-size: 1.4em; }
.calcufacil-business_loan_early_payoff .results .result-section h4 {
    font-size: 1.1em; color: #2E7D32; margin-top:10px; margin-bottom:10px; text-align:left;
    border-bottom: 1px solid #A5D6A7; padding-bottom: 5px;
}
.calcufacil-business_loan_early_payoff .initial-message {
    text-align: center; color: #1B5E20; font-style: italic; padding: 20px;
    background-color: #E8F5E9; border: 1px dashed #A5D6A7; border-radius: 5px; width:100%;
}
.calcufacil-business_loan_early_payoff .calculation-summary { width: 100%; margin-bottom: 20px; }

.calcufacil-business_loan_early_payoff .main-result {
    display: flex; justify-content: space-between; align-items: center;
    background-color: #C8E6C9; /* Light Green */ padding: 10px 15px; border-radius: 4px;
    border: 1px solid #A5D6A7; font-size: 1em; color: #1B5E20; /* Dark Green */
    margin-bottom: 7px; width: 100%;
}
.calcufacil-business_loan_early_payoff hr { border:0; height:1px; background: #A5D6A7; margin:15px 0; }
.calcufacil-business_loan_early_payoff .main-result.info-result { background-color: #E8F5E9; border-color: #C8E6C9;}
.calcufacil-business_loan_early_payoff .main-result.strong-result { font-weight: 600; background-color: #A5D6A7; color: #1B5E20;}

.calcufacil-business_loan_early_payoff .main-result.final-result {
    background-color: #2E7D32; /* Medium Dark Green */ color: #fff; font-size: 1.3em;
    padding: 15px 20px; border-color: #1B5E20; margin-top:10px; font-weight: 600;
}
.calcufacil-business_loan_early_payoff .main-result span:first-child { text-align:left; padding-right:10px; }
.calcufacil-business_loan_early_payoff .main-result span:last-child { font-weight: 700; text-align:right; }

.calcufacil-business_loan_early_payoff .errors {
    color: #C62828; background-color: #FFEBEE; border: 1px solid #FFCDD2;
    padding: 10px 15px; border-radius: 4px; margin: 15px 0; text-align: center; width:100%;
}
.calcufacil-business_loan_early_payoff .errors ul { list-style: none; padding: 0; margin: 0; }

.calcufacil-business_loan_early_payoff .disclaimer-box.info {
    padding: 15px; background-color: #E0F2F1; /* Light Teal for info */
    border: 1px solid #B2DFDB; border-left: 5px solid #26A69A; /* Teal accent */
    border-radius: 8px; font-size: 0.85em; color: #004D40; width:100%;
}
.calcufacil-business_loan_early_payoff .disclaimer-box.info h4 {
    color: #00796B; font-size: 1.1em; margin-top: 0; margin-bottom: 10px;
}
.calcufacil-business_loan_early_payoff .disclaimer-box.info ul { list-style: disc; margin-left: 20px; padding-left: 0; line-height: 1.5; }

/* Responsive */
@media (max-width: 768px) {
    .calcufacil-business_loan_early_payoff.calcufacil-container { flex-direction: column; gap: 20px; padding: 15px; }
    .calcufacil-business_loan_early_payoff .calcufacil-left.calculator-form,
    .calcufacil-business_loan_early_payoff .calcufacil-right.results { min-width: unset; width: 100%; }
}