.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.containerz {
    width: 85%;
    height: 100vw;
    min-height: 100vh;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-box {
    width: 80%;
    height: 100% !important;
    background-color: #ffffff;
    opacity: 80%;
    /* Adicionando sombras para neomorphism */
    box-shadow: 4px 4px 10px #2b2b2b11,
        /* Sombra externa escura */
        -4px -4px 10px #3b3b3b15;
    /* Sombra externa clara */
    border: none;
    /* Remover borda se houver */
    padding-bottom: 5%;
    margin-left: 22%;
}

.boxin {
    width: 100%;
    background-color: rgb(255, 255, 255);
    height: 15%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2%;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 0.5%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas para devolucao_registro */
    gap: 20px;
    /* Espaçamento entre os itens */
    width: 100%;
    /* Garante que o grid ocupe toda a largura disponível */
}

.grid-container-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 colunas para devolucao_itens */
    gap: 20px;
    /* Espaçamento entre os itens */
    width: 100%;
    /* Garante que o grid ocupe toda a largura disponível */
}

.grid-item {
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
    /* Cor de fundo dos itens */
    padding: 10px;
    /* Espaçamento interno dos itens */
    border-radius: 5px;
    /* Bordas arredondadas */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    /* Sombra leve */
}

.grid-item label {
    margin-bottom: 5px;
    /* Espaçamento entre o label e o input */
    font-weight: bold;
    /* Negrito para as labels */
    font-size: 14px;
    /* Tamanho da fonte para as labels */
    color: #333;
    /* Cor da fonte das labels */
}

.grid-item input {
    width: 100%;
    /* Faz com que o input ocupe toda a largura do grid-item */
    padding: 8px;
    /* Espaçamento interno do input */
    box-sizing: border-box;
    /* Inclui padding e border na largura total */
    border: 1px solid #ccc;
    /* Borda padrão para inputs */
    border-radius: 4px;
    /* Bordas arredondadas para inputs */
}

.botoes {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-custom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-custom > .fi {
    background-color: transparent;
    color: white;
}

.form-floating {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}


.fi {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-control {
    width: 80%;
}

.btn {
    width: 20%;
}

.modal-backdrop {
    display: none !important;
}

.table {
    height: 100%;
}

.table,
th,
tr,
thead,
tbody,
table,
td {
    cursor: pointer;
    text-align: center;
}

.boxin::-webkit-scrollbar {
    display: none;
    /* Esconde a barra de rolagem em navegadores WebKit */
}

.boxin {
    -ms-overflow-style: none;
    /* Esconde a barra de rolagem no IE e Edge */
    scrollbar-width: none;
    /* Esconde a barra de rolagem no Firefox */
}