/* Styles for Education Investment Breakeven Calculator */
.calcufacil-education_investment_breakeven_calculator {
    background-color: #f0f7f4; /* Light mint/green */
    border: 1px solid #cce8de;
    border-left: 5px solid #48a9a6; /* Tealish Green */
    border-radius: 0 8px 8px 0;
    padding: 20px 25px;
    font-family: 'PT Sans', sans-serif;
    max-width: 800px;
    margin: 25px auto;
    box-shadow: 0 3px 7px rgba(0,0,0,0.07);
}

.calcufacil-education_investment_breakeven_calculator > h3 { /* Default title */
    text-align: center;
    color: #33691e; /* Dark Green */
    margin-bottom: 15px;
    font-size: 1.3em;
}

.calcufacil-education_investment_breakeven_calculator .calculator-content h2 {
    text-align: center;
    color: #2e7d32; /* Medium Dark Green */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.7em;
    font-weight: 600;
}

.calcufacil-education_investment_breakeven_calculator .description {
    text-align: center;
    color: #43a047; /* Green */
    font-size: 0.95em;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Form Styling */
.calcufacil-education_investment_breakeven_calculator form {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #a5d6a7; /* Light Green dashed */
}

.calcufacil-education_investment_breakeven_calculator form h3 {
 color: #4caf50; /* Standard Green */
 margin-bottom: 20px;
 font-size: 1.25em;
 border-bottom: 1px solid #e8f5e9; /* Very Light Green */
 padding-bottom: 8px;
 display: flex;
 align-items: center;
 gap: 8px;
}
.calcufacil-education_investment_breakeven_calculator form h3 i {
  color: #66bb6a; /* Lighter Green */
}

.calcufacil-education_investment_breakeven_calculator .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px 22px;
    margin-bottom: 25px;
}

.calcufacil-education_investment_breakeven_calculator .input-group {
    display: flex;
    flex-direction: column;
}

.calcufacil-education_investment_breakeven_calculator .input-group label {
    font-weight: 600;
    color: #388e3c; /* Medium Green */
    margin-bottom: 6px;
    font-size: 0.9em;
}

.calcufacil-education_investment_breakeven_calculator .input-group input[type="number"],
.calcufacil-education_investment_breakeven_calculator .input-group input[type="text"] {
    padding: 10px;
    border: 1px solid #81c784; /* Light Green border */
    border-radius: 4px;
    font-size: 1em;
    font-family: 'PT Sans', sans-serif;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.calcufacil-education_investment_breakeven_calculator .input-group small {
    font-size: 0.8em;
    color: #4caf50; /* Standard Green */
    margin-top: 5px;
    line-height: 1.4;
}

.calcufacil-education_investment_breakeven_calculator button[type="submit"] {
    background-color: #4caf50; /* Standard Green */
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.calcufacil-education_investment_breakeven_calculator button[type="submit"]:hover {
    background-color: #388e3c; /* Darker Green */
}

/* Results Area Styling */
.calcufacil-education_investment_breakeven_calculator .results-area {
    margin-top: 25px;
    padding: 20px;
    background-color: #e8f5e9; /* Very light green */
    border-radius: 6px;
    border: 1px solid #c8e6c9; /* Light green border */
}
.calcufacil-education_investment_breakeven_calculator .results-area h3 {
    color: #2e7d32; /* Darker Green */
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.calcufacil-education_investment_breakeven_calculator .results-area h3 i {
    color: #66bb6a; /* Lighter Green */
}

.calcufacil-education_investment_breakeven_calculator .results-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}
.calcufacil-education_investment_breakeven_calculator .summary-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #dcedc8;
}
.calcufacil-education_investment_breakeven_calculator .summary-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #388e3c; /* Medium Green */
    font-size: 1.05em;
     display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.calcufacil-education_investment_breakeven_calculator .summary-item h4 i {
    color: #81c784;
}
.calcufacil-education_investment_breakeven_calculator .summary-item .value {
    font-size: 1.5em;
    font-weight: bold;
    color: #1b5e20; /* Darkest Green */
    display: block;
    margin-bottom: 5px;
}
.calcufacil-education_investment_breakeven_calculator .summary-item small {
    font-size: 0.85em;
    color: #555;
}


.calcufacil-education_investment_breakeven_calculator .result-item.highlight.breakeven-box {
    background-color: #dcedc8; /* Light green highlight */
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid #a5d6a7;
}
.calcufacil-education_investment_breakeven_calculator .breakeven-box .result-label {
    display: block;
    font-weight: bold;
    color: #2e7d32; /* Darker Green */
    margin-bottom: 8px;
    font-size: 1.1em;
}
.calcufacil-education_investment_breakeven_calculator .breakeven-box .value.main-result {
    font-size: 2em;
    font-weight: bold;
    color: #1b5e20; /* Darkest Green */
    line-height: 1.2;
    display: block;
}
.calcufacil-education_investment_breakeven_calculator .breakeven-box .value.error-value {
    color: #c62828; /* Red for error/never */
}
.calcufacil-education_investment_breakeven_calculator .breakeven-box small {
    font-size: 0.9em;
    color: #388e3c;
    display: block;
    margin-top: 5px;
}


/* Disclaimer Box */
.calcufacil-education_investment_breakeven_calculator .disclaimer-box {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #f1f8e9; /* Very light green */
    border: 1px solid #dcedc8;
    border-left: 5px solid #7cb342; /* Lime Green */
    border-radius: 5px;
}
.calcufacil-education_investment_breakeven_calculator .disclaimer-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #558b2f; /* Darker Lime Green */
    font-size: 1.1em;
}
.calcufacil-education_investment_breakeven_calculator .disclaimer-box ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
    font-size: 0.9em;
    color: #424242; /* Dark Gray */
    line-height: 1.6;
}
.calcufacil-education_investment_breakeven_calculator .disclaimer-box ul li {
    margin-bottom: 8px;
}

.calcufacil-education_investment_breakeven_calculator .error-message {
    color: #b71c1c; /* Dark Red */
    background-color: #ffcdd2; /* Light Red */
    border: 1px solid #ef9a9a;
    padding: 12px 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    margin: 15px 0;
}

.calcufacil-education_investment_breakeven_calculator .initial-message {
    color: #388e3c;
    text-align: center;
    padding: 25px;
    background-color: #f1f8e9;
    border: 1px dashed #dcedc8;
    border-radius: 5px;
    margin-top: 20px;
}