/*
 * FRONTEND CALCULATOR
 */

.nb-ee-calculator {
    max-width: 900px;
    margin: 20px auto;
    padding: 24px;
    border: 1px solid #d9dee5;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.06);
    font-family: inherit;
    color: #17202a;
    line-height: 1.5;
}

.nb-ee-calculator * {
    box-sizing: border-box;
}


/* HEADER */

.nb-ee-header h2 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.25;
}

.nb-ee-header p {
    margin: 0 0 18px;
    color: #5b6570;
}


/* SECTIONS */

.nb-ee-section {
    padding: 22px 0;
    border-top: 1px solid #e8ebef;
}

.nb-ee-section h3 {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 0 0 16px;
    font-size: 20px;
}

.nb-ee-section h4 {
    margin: 20px 0 10px;
    font-size: 17px;
}

.nb-ee-max {
    font-size: 13px;
    font-weight: 600;
    color: #536273;
}


/* GRID */

.nb-ee-grid {
    display: grid;
    gap: 16px;
}

.nb-ee-grid-2 {
    grid-template-columns: 1fr 1fr;
}


/* LABELS */

.nb-ee-calculator label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 600;
}


/* INPUTS */

.nb-ee-calculator input,
.nb-ee-calculator select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #cbd2da;
    border-radius: 8px;
    background: #ffffff;
    font: inherit;
    font-weight: 400;
    color: #17202a;
}

.nb-ee-calculator select {
    cursor: pointer;
}

.nb-ee-calculator input:focus,
.nb-ee-calculator select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.12);
}


/* RESULT */

.nb-ee-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #f6f8fa;
    border-radius: 8px;
}

.nb-ee-result strong,
.nb-ee-inline-total strong {
    font-size: 18px;
}


/* HELP TEXT */

.nb-ee-help {
    margin: 0 0 14px;
    color: #5b6570;
    font-size: 14px;
}


/* TOTALS */

.nb-ee-inline-total {
    margin-top: 12px;
    text-align: right;
}


/* ARRANGED EMPLOYMENT */

.nb-ee-arranged-details {
    margin-top: 14px;
    padding: 14px;
    background: #f6f8fa;
    border-left: 3px solid #cbd2da;
    border-radius: 6px;
    font-size: 14px;
    color: #4d5965;
}


/* ADAPTABILITY */

.nb-ee-adaptability {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.nb-ee-adaptability label {
    padding: 14px;
    border: 1px solid #e0e4e8;
    border-radius: 9px;
    background: #fafbfc;
}

.nb-ee-adaptability small {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
    color: #5b6570;
}


/* STATUS */

.nb-ee-status,
.nb-ee-eligibility {
    padding: 11px 13px;
    border-radius: 8px;
    margin-bottom: 14px;
    background: #f5f7f9;
}

.nb-ee-status.is-ineligible,
.nb-ee-eligibility.is-ineligible {
    background: #fff0f0;
    color: #b42318;
    border: 1px solid #f1b5b5;
}


/* INELIGIBILITY EXPLANATIONS */

.nb-ee-ineligible-message {
    display: none;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 7px;
    background: #fff0f0;
    border: 1px solid #f1b5b5;
    color: #b42318;
    font-size: 14px;
}

.nb-ee-ineligible-message.show {
    display: block;
}


/* ELIGIBLE */

.nb-ee-eligibility.is-eligible {
    background: #e9f7ef;
    border: 1px solid #9ed5b3;
    color: #137333;
    font-weight: 700;
}


/* SUMMARY */

.nb-ee-summary {
    margin-top: 20px;
    padding: 22px;
    border-radius: 12px;
    background: #f3f6f9;
    text-align: center;
}

.nb-ee-summary h3 {
    margin: 0 0 4px;
}

.nb-ee-total {
    font-size: 42px;
    line-height: 1.1;
    margin: 8px 0 12px;
    transition: color 0.2s ease;
}

.nb-ee-total span {
    font-size: 20px;
    color: #64707c;
}


/* TOTAL SCORE COLORS */

.nb-ee-total.is-green {
    color: #137333;
}

.nb-ee-total.is-red {
    color: #b42318;
}


/* BREAKDOWN */

.nb-ee-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: left;
}

.nb-ee-breakdown div {
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}


/* FOOTER */

.nb-ee-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e6ea;
    font-size: 12px;
    line-height: 1.5;
    color: #69737d;
    text-align: center;
}

.nb-ee-footer strong {
    color: #4f5963;
}


/* LINKS */

.nb-ee-calculator a {
    color: inherit;
}


/* MOBILE */

@media (max-width: 700px) {

    .nb-ee-grid-2,
    .nb-ee-adaptability,
    .nb-ee-breakdown {
        grid-template-columns: 1fr;
    }

    .nb-ee-calculator {
        padding: 16px;
    }

    .nb-ee-header h2 {
        font-size: 23px;
    }

    .nb-ee-section h3 {
        font-size: 18px;
    }

    .nb-ee-total {
        font-size: 36px;
    }

}