.bb-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.bb-loading-content{
    display: flex;
    flex-direction: column;
}

.bb-loading-content p{
    margin-top: 1rem;
    color: #ffffff;
}

.bb-spinner {
    width: 64px;
    height: 64px;
    border: 8px solid #ebf2ff;
    border-top: 8px solid #4668ff;
    border-right: 8px solid #4668ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}
