#divLoading {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 30%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.text-truncate {
    overflow: hidden; /* Hides the overflow text */
    white-space: nowrap; /* Prevents text from wrapping to the next line */
    text-overflow: ellipsis; /* Adds the ellipsis (...) */
}
