.loading-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    flex-direction: column;
    justify-content: center;
}

.loading-text {
    margin-top: 10px;
    /* Adjust the space between the loader and the text */
    color: #000;
    /* You can change the color if needed */
    font-size: 16px;
    /* Adjust the font size if needed */
    text-align: center;
}

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

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

.texto-start {
    text-align: start !important;
    justify-content: flex-start !important;
}

.texto-end {
    text-align: end !important;
    justify-content: flex-end !important;
}