.produtos form.form-atualiza {
    display: flex;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

/******************************/
div.buttons {
    display: flex;
    justify-content: space-between;
}
.box-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.box-btn .btn-credito {
    display: flex;
    gap: 10px;
}
.btn-cart {
    color: #EAB251 !important;
    background-color: #000;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 7px 15px;
    font-size: 14px;
}

@media (max-width: 580px) {
    .title-painel {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    table thead {
        display: none;
    }

    table tbody tr {
        border: none;
        display: table-row;
    }
    table tbody td {
        display: block;
        text-align: right;
        border: none;
    }

    table tbody tr td:before {
        content: attr(data-title);
        position: absolute;
        left: 32px;
        display: block;
        font-weight: 600;
        font-size: 1em;
    }

    table tbody td button {
        width: 100%;
    }

    
    table tbody tr:not(:first-child) {
        border-top: 1px solid #000;
    }
}