.custom-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ajuste conforme necessário */
}

.box-upload {
    border: 2px dashed #c1c8d2;
    text-align: center;
    padding: 0.5rem;
}

.box-upload-click {
    cursor: pointer;
    color: #a6a8ac;
}

.uploaded {
    color: #a6a8ac;
}

.container-files {
    border: 2px solid #ccd1d9;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    align-items: center;
    margin: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease-in-out;
}

.container-files:hover {
    border-color: #0061f2;
    box-shadow: 0 2px 4px rgba(0, 97, 242, 0.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box-container-files {
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.box-container-files:empty::before {
    content: "Nenhum arquivo selecionado";
    color: #6c757d;
    font-style: italic;
    display: block;
    text-align: center;
    padding: 20px;
}

.btn-deleted-file {
    color: #dc3545;
    border-radius: 50px;
    padding: 2px 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-deleted-file:hover {
    color: #fff;
    background-color: #dc3545;
    transform: scale(1.1);
}

.btn-deleted-file-list {
    color: #0061f2;
    cursor: pointer;
}

.icon-deleted-file {
    margin-top: 4px;
}

.filetype {
    background: #0061f2;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filename {
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
}

.file-left {
    margin-left: 0 !important;
}

.size-logo-custom {
    width: 100% !important;
    height: 100% !important;
}


.topnav .navbar-brand {
    width: 10rem !important;
}

/* --- Color --- */
    .c-69707a { color: #69707a; }


/* --- Display --- */
    .d-block { display: block; }


/* --- Margin --- */
    .m-auto { margin: auto }

    /* --- Left --- */
        .ml-1 { margin-left: 1em; }
        .ml-2 { margin-left: 2em; }

    /* --- Top --- */
        .mt-05 { margin-top: 0.5rem !important; }
        .mt-1 { margin-top: 1rem !important; }
        .mt-2 { margin-top: 2rem !important; }


/* --- Modal --- */
    .modal-90 {
        max-width: 90vw;
        height: 90vh;
    }

    .modal-80 {
        max-width: 80vw;
        height: 80vh;
    }


/* --- Position --- */

    /* --- Top --- */
        .top-5 { top: 5% !important; }
        .top-10 { top: 10% !important; }

/* --- Popover --- */

    .popover-scroll {
        max-height: 500px; /* Ajuste conforme necessário */
        overflow-y: auto;
    }


/* --- TABLE --- */
    .token-column {
        max-width: 150px; /* Define um limite de largura */
        white-space: nowrap; /* Impede que o texto quebre linha */
        overflow: hidden; /* Oculta o que passar do limite */
        text-overflow: ellipsis; /* Adiciona os "..." */
    }

    .paginate_button.current {
        background-color: #007bff;
        color: #ffffff;
    }

    .ativo {
        background-color: #007bff;
        color: #ffffff;
    }


/* --- Text --- */

    /* --- Align --- */
        .ta-c { text-align: center; }

    /* --- Justify --- */
        .tj-j {
            text-align: justify;
            text-justify: inter-word;
        }

    /* --- Weight --- */
        .fw-100 { font-weight: 100; }
        .fw-200 { font-weight: 200; }
        .fw-300 { font-weight: 300; }
        .fw-400 { font-weight: 400; }
        .fw-500 { font-weight: 500; }
        .fw-600 { font-weight: 600; }
        .fw-700 { font-weight: 700; }
        .fw-800 { font-weight: 800; }
        .fw-900 { font-weight: 900; }


/* --- Width --- */
    .w-90 { width: 90% !important; }
    .w-80 { width: 80% !important; }
    .w-70 { width: 70% !important; }
    .w-60 { width: 60% !important; }
    .w-50 { width: 50% !important; }
    .w-30 { width: 30% !important; }


/* --- Z-index --- */
    .z-2000 { z-index: 2000 !important; }
    .z-3000 { z-index: 9999 !important; }