/* begin spinners */
/* Full-page overlay */
#page-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page-spinner .spinner-border {
    /* width: 3rem;
    height: 3rem; */

    /* width: 50px;
    height: 50px;
    border: 6px solid #ccc; */
    /* border-top: 6px solid #007bff; Customize spinner color */
    /* border-radius: 50%;
    animation: spin 1s linear infinite; */

    border: 5px solid #f3f3f3; /* Light gray border */
    border-top: 5px solid #3498db; /* Blue top border for rotation visibility */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Apply the spin animation */
}
/* end of spinners */