/* Custom Styles for Lump Sum Calculator */
body {
    background-color: #f7f9fc;
}

.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.form-range::-webkit-slider-thumb {
    background-color: #007bff;
}

.form-range::-moz-range-thumb {
    background-color: #007bff;
}

.form-range::-ms-thumb {
    background-color: #007bff;
}

.form-label span {
    font-weight: 600;
    color: #007bff;
}

#totalValueResult {
    font-size: 2rem;
}

.table-hover tbody tr:hover {
    background-color: #e9ecef;
}

#lumpSumChart {
    max-width: 250px;
    max-height: 250px;
    margin: auto;
}
