html {
    font-size: 14px; /* Set the base font size to 14px */
}

body {
    font-size: 1rem; /* Ensure body text scales with the base font size */
}


#bankAccNumber::-webkit-outer-spin-button,
#bankAccNumber::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#bankAccNumber {
    -moz-appearance: textfield;
}
.btn-primary {
    color: #fff;
    background-color: #005eb8;
    border-color: #005eb8;
    font-weight: bold;
    text-align: left;
    /* padding: 0.75rem 1.2rem; */
    /* font-size: 1rem; */
    /* line-height: 1.5; */
    border-radius: 0.3rem;
    margin: 15px 15px 15px 0px;
}

.btn-infonew {
    color: #000;
    background-color: #f9f9f9;
    border-color: #333;
    padding: 0.6rem 1.1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.3rem;
    margin: 0px 15px 0px 0px;
    text-align: center;
}

.btn-infosmall {
    color: #000;
    background-color: #f9f9f9;
    border-color: #333;
    padding: 0.3rem 0.55rem; /* Smaller padding */
    font-size: 0.9rem; /* Smaller font size */
    line-height: 1.5;
    border-radius: 0.3rem;
    margin: 0px 10px 0px 0px;
    text-align: center;
}

.btn-infonewwide {
    color: #000;
    background-color: #f9f9f9;
    border-color: #333;
    padding: 0.75rem 1.2rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.3rem;
    margin: 15px 15px 15px 0px;
    text-align: left;
    width: 100%;
}

.btn-infonew:hover,.btn-infonewwide:hover,.btn-infosmall:hover {
    color: #000 !important;
    background-color: #96ccff !important; 
    border-color: #333 !important;
}

.btn-infonew:hover,.btn-infonewwide:hover,.btn-infosmall:hover {
    color: #000 !important;
    background-color: #96ccff !important; 
    border-color: #333 !important;
}

.form-control, .form-check-input {
    border: 1px solid #333;
}

* {
    box-sizing: border-box;
}

.nav-link{
    color: #fff;
    font-weight: 700;
}

.btn-check:active+.btn-infonew, .btn-check:checked+.btn-infonew, .btn-infonew.active, .btn-infonew:active, .show>.btn-infonew.dropdown-toggle {
    color: #000;
    background-color: #96ccff;
    border-color: #000;
}
.btn-check:active+.btn-infosmall, .btn-check:checked+.btn-infosmall, .btn-infosmall.active, .btn-infosmall:active, .show>.btn-infosmall.dropdown-toggle {
    color: #000;
    background-color: #96ccff;
    border-color: #000;
}
.nav-link{
    color: #fff;
    font-weight: 700;   
}

.questions{
    font-weight: 700;
}
p.questions{
    font-size: 1.1rem;
    
}


h4.questions{
    font-size: 1.3rem;

}
.disabled-button {
    background-color: #d3d3d3;
    border-color: #d3d3d3;
    pointer-events: none;
    cursor: not-allowed;
}


.required-star {
    color: #ce0000;
}

/* .remove-child {
    width: 10%;
} */
#spendingPlan{
width: 100%;
}

/* set margin and padding on a fieldset to nothing */
fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

#documentFields {
    margin: 0;
    padding: 0;
    border: none;
}

.right-space  {
    margin-right: 10px; /* Adjust the value as needed */
}



/* Modal Styles */
#timeoutModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 65%;  
    max-width: 500px;
    background: white;
    padding: 40px 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    position: relative;
} 


#loadingIndicator {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's above other elements */
}

/* Spinner animation */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (min-width: 768px) {
    /* .remove-child {
        width: 5%;
    } */

}

.invalid-field{
    width: 100%;
    margin-top: 0.25rem;
    font-size: 90%;
    color: #dc3545;
}

.progress-bar{
    background: #005eb8;
}