* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
}

.containerz {
    background-color: #f1f1f1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80%;
    gap: 25px;
    padding: 20px;
}

.form-form {
    display: flex;
    background-color: #ffffff;
    flex-direction: column;
    gap: 15px;
    width: 30%;
    height: 100%;
    justify-content: center;
    border-radius: 15px;
    padding: 15px;
}

.form-details {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.details-wrapper {
    display: flex;
    background-color: #349dff;
    flex-direction: column;
    gap: 15px;
    width: 40%;
    height: 100%;
    justify-content: center;
    padding: 30px;
    border-radius: 15px;
}

.select2-container {
    z-index: 9999; /* Ajusta o z-index para garantir que esteja acima do modal */
}

.select2-dropdown {
    z-index: 99999; /* Ajusta o z-index do dropdown do select2 */
}

.btn-primary {
    background-color: #349dff;
    border: #349dff;
}

.auto-resize {
    overflow: hidden; /* Esconde a barra de rolagem */
}

#prodlist {
    resize: none;
    height: 200px;
    font-size: 0.9rem;
}