with open("dashboard_estoque.html", "r", encoding="utf-8") as f:
    html = f.read()

old = 'style="height:80px;width:auto;object-fit:contain;border-radius:6px;flex-shrink:0"'
new = 'style="height:110px;width:auto;object-fit:contain;border-radius:6px;flex-shrink:0"'

if old in html:
    html = html.replace(old, new, 1)
    print("OK")
else:
    print("ERRO")

with open("dashboard_estoque.html", "w", encoding="utf-8") as f:
    f.write(html)
