.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.containerz {
    width: 100%;
    height: 100%;
    min-height: 100vh; /* Isso garante que o .container também cubra toda a altura da viewport */
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 22%;
}

.main-box {
    width: 95%;
    height: 100%; /* Ajuste para 'auto' para acomodar o conteúdo */
    background-color: #ffffff;
    opacity: 80%;
    box-shadow: 4px 4px 10px #2b2b2b11, -4px -4px 10px #3b3b3b15;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start; /* Ajustado para 'flex-start' para alinhar itens ao topo */
    padding: 20px; /* Ajuste conforme necessário */
}

.boxin {
    width: 100%;
    background-color: rgb(235, 235, 235);
    height: 15%;
    border-radius: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2%;
    padding-left: 2%;
    padding-bottom: 0.5%;
}

.boxin button {
    width: 80%;
}

.btn-custom {
    background-color: #13795b;
    color: white;
}

.table, th, tr, thead, tbody, table, td {
    background-color: rgb(235, 235, 235) !important;
    cursor: pointer;
    text-align: center;
}

.table-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.text-left {
    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 */
    /* Seus outros estilos... */
}

.data-reg {
    display: flex;
    background-color: rgb(243, 243, 243);
    width: 98%;
    height: 35px;
    justify-content: center;
    align-items: center;
    padding-left: 2%;
    padding: 25px;
    gap: 15px;
    border: 2px solid black;
    border-radius: 10px;
}

.data-reg::placeholder {
    font-weight: 500;
}

/* Para garantir a compatibilidade entre navegadores, você pode incluir os seguintes: */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #909090;
  }
  :-ms-input-placeholder { /* IE 10+ */
    color: #909090;
  }
  ::-moz-placeholder { /* Firefox 19+ */
    color: #909090;
    opacity: 1; /* O Firefox também tem uma opacidade padrão para placeholders */
  }
  :-moz-placeholder { /* Firefox 18- */
    color: #909090;
    opacity: 1;
  }

.data-reg :focus {
    outline: none;
}


.data-reg .codprd {
    padding: 5px;
    background-color: #f7d935;
    color: black;
    width: 100px;
    border-radius: 5px;
}


.data-reg .nomprd {
    padding: 5px;
    background-color: #f7d935;
    color: white;
    width: max-content;
    border-radius: 5px;
}
.data-reg .qtdped {
    padding: 5px;
    background-color: #f7d935;
    color: white;
    width: 220px;
    border-radius: 5px;
}
.data-reg .embalagem {
    padding: 5px;
    background-color: #f7d935;
    color: white;
    width: 120px;
    border-radius: 5px;
}
.radio {
    background-color: #f7d935;
    color: white;
}



select:hover {
    cursor: pointer;
}

.column {
    display: flex;
    flex-direction: column;
    width: 48%; /* Define a largura para quase metade da 'main-box', ajuste conforme necessário */
    /* Ajustes adicionais de margem/padding podem ser necessários aqui */
    margin: 0;
}


.form-floating {
    margin-bottom: 10px; /* Ajuste para espaço entre os campos */
}


.login-header {
    font-size: 3.9rem;
    font-weight: 800;
    margin-top: 8%;
    padding-top: 40px;
}

hr {
    color: #3333338a;
}
