.card-border-radius
{
    border-radius: 19px;
}


.progress-bar {
    height: 2px;
    width: 0;
    background-color: #3f51b5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: width 1s ease; /* Adjust the duration (1s) as needed */
}

#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1000;
}

.loader {
    border: 4px solid #3f51b5;
    border-top: 4px solid #3f51b5;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
}



/* Hide the number spinner (arrows) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}