.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.containerz {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    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;
    justify-content: space-between;
    /* Ajustado para 'space-around' para distribuir as colunas */
    align-items: center;
    /* Ajustado para 'flex-start' para alinhar itens ao topo */
    padding: 20px;
    /* Ajuste conforme necessário */
    flex-wrap: wrap;
    /* Permite que os itens se envolvam conforme necessário */
    gap: 10px;
    flex-direction: column;
    overflow: scroll;
}

form {
    display: flex;
    flex-direction: column;
}

.form-wrapper {
    display: flex;
    margin-top: 3%;
    width: 100%;
}

.boxin {
    width: 1000px;
    height: 100%;
    background-color: #ffef12;
    color: rgb(17, 17, 17);
    border-radius: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.boxin::-webkit-scrollbar {
    display: none;
    /* Esconde a barra de rolagem em navegadores WebKit */
}

.warning {
    color: red;
    font-weight: 900;
}

.imp {
    color: red;
    font-weight: 900;
    font-size: 1.2rem;
}

.legend {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cuidado{
    font-size: 2rem;
    line-height: 100% !important;
    height: fit-content !important;
    box-sizing: content-box;
    position: absolute;
    left: 3%;
    transform: translate(-50%, -10%);
}


.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(228, 33, 33);
    width: 100%;
    height: 35px;
    justify-content: center;
    align-items: center;
    padding: 25px;
    gap: 15px;
    border: none;
    border-radius: 10px;
    text-align: center;
}

.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: #fff;
    color: black;
    width: 100px;
    border-radius: 5px;
}


.data-reg .nomprd {
    padding: 5px;
    background-color: #fff;
    color: white;
    width: max-content;
    border-radius: 5px;
}

.data-reg .qtdped {
    padding: 5px;
    background-color: #fff;
    color: white;
    width: 220px;
    border-radius: 5px;
}




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;
}

#addItem {
    /* Ajuste estes valores conforme necessário para obter o tamanho desejado do botão */
    width: 360px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    gap: 2%;
    position: relative;
    font-size: 1.3rem;
    background-color: #ffef12;
    border: none;
    color: #333333;
    padding-top: 1.2%;
    padding-bottom: 1.2%;
    /* Necessário para posicionar o ícone */
}

#addItem i {
    padding-top: 1.3%;
}

#addItem:hover {
    background-color: #ffd412;
}


.btn-custom {
    background-color: #ffef12 !important;
    color: #333333;
    font-weight: 500 !important;
}

.btn-custom:hover {
    background-color: #ffd412 !important;
    color: #333333;
}

#itemsContainer .item-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}