/* Center the loader on the screen */
.loader {
    display: block; /* Initially hidden */
    position: relative;
    /* top: 50%;
    left: 50%; */
    transform: translate(-50%, -50%);
    z-index: 9999; /* Ensure it's on top of other elements */
}
/* //update */
/* Optional: Spinner style */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25em;
    color: #007bff; /* Change color to suit your theme */
    animation: spin 1s linear infinite;
}

/* Spinner rotation animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
