.acoes-estoque {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-produtos-teste {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: none;
    border-radius: 10px;
    padding: 11px 18px;

    background: #4f9d69;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.2s ease;
}

.btn-produtos-teste:hover {
    background: #3f8256;
    transform: translateY(-1px);
}

.btn-produtos-teste:active {
    transform: translateY(0);
}

.btn-produtos-teste:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.btn-limpar-teste {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: none;
    border-radius: 10px;
    padding: 11px 18px;

    background: #c94f5c;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.2s ease;
}

.btn-limpar-teste:hover {
    background: #a93d49;
    transform: translateY(-1px);
}

.btn-limpar-teste:active {
    transform: translateY(0);
}

.btn-limpar-teste:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}