/* :root {
    --gc-color-red: #BE1E2D;
    --gc-color-charcoal: #414042;
    --gc-color-navy: #16355D;
    --gc-color-dark-red: #A51929;
    --gc-color-light-grey: #BCBEC0;
    --gc-color-steel-teal: #5A6D6E;
    --gc-color-midnight-blue: #0E2034;
    --gc-color-royal-blue: #2C65B0;
    --gc-color-lightest-grey: #F2F3F4;
} */

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--gc-color-light-grey);
    border-radius: 4px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    background: var(--gc-color-red);
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0,0,0,0.4);
    margin-top: -8px; /* Centers the thumb */
}

input[type="range"]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    background: var(--gc-color-red);
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0,0,0,0.4);
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 4px;
}

input[type="range"]::-moz-range-track {
  height: 8px;
  background: #ddd;
  border-radius: 4px;
}

input[type="number"] {
    font-size: 16px;
    font-family: 'Poppins', 'Century Gothic', sans-serif;
}

#taxSavingsCalc {
    max-width: 700px;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Poppins', 'Century Gothic', sans-serif;
}

.submitCustomButton {
    padding: .9em 2.5em;
    font-size: 16px;
    background-color: var(--gc-color-red);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition:0.2s all ease-in-out;
    text-shadow : none;
    margin-bottom: .5em;
    margin-top: 1em;
    text-transform:capitalize; /* UPDATED */
}

button.submitCustomButton:hover{
    background: var(--gc-color-lightest-grey);
    color: var(--gc-color-navy);
}

.paymentNote {
    font-size: 10px;
    text-align: center;
    line-height: 1.2em;
}

#applyLink {
    display:inline-block;
    margin-bottom: 0px;
    font-weight: 500;
    color: var(--gc-color-royal-blue);
    text-decoration: none;
    margin-bottom: 0px;
    margin-top:10px;
    padding-left:1em;
    text-transform:capitalize; /* UPDATED */
}

#applyLink:hover {
    color:var(--gc-color-red);
}

#taxSavingsCalc label, p {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gc-color-charcoal);
}

#equipmentCost {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

#term {
    width: 100%;
    margin: 10px 0;
}

#termLabel {
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
}

#termMarks {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: var(--gc-color-navy);
    padding: 0 5px;
    margin-top: .5em;
}

#termMarks span {
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
}

#resultsBox { 
    display: flex;
    gap: 10px;
    margin-top: 40px;
    background-color: #FFFFFF;
    border-radius: 7px;
    padding: .4em;
    width: 100%;
}
.result-column { 
    padding: 10px;
    flex: 1;
    width: 50%;
}
.result-header {
    margin-bottom: 20px;
}

.sub-header {
    line-height: 1.0;
}

.result-column h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 28px;
    color: var(--gc-color-red);
    font-weight: 600;
}

.result-column small {
    font-size: 12px;
    color: var(--gc-color-red);
}

.result-column input {
    background: var(--gc-color-lightest-grey);
    border-radius: 6px;
    border: 0;
    font-size: 28px;
    width: 100%;
    font-weight: 600;
    padding: 10px 12px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

@media (max-width: 500px) {
    .result-column input {
        font-size: 18px;
    }
}

.result-column label {
    color: var(--gc-color-light-grey) !important;
    font-size: 14px !important;
    margin-bottom: 5px !important;
}

#taxMonthly, #efaMonthly {
    color: var(--gc-color-royal-blue);
}

#taxYearly, #efaYearly, #taxTotal, #efaTotal {
    color: var(--gc-color-navy);
}

#leftResult {
    border-left: 3px solid var(--gc-color-lightest-grey);
    padding-left: 20px;
}

#taxSavingsCalc strong {
    color: var(--gc-color-royal-blue);
}