.scroll-to-top {
    position: fixed;
    bottom: 1px; /* Ajuste para ficar um pouco mais abaixo */
    right: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.scroll-to-top svg {
    fill: white;
}

/* Ajuste para esconder o botão quando a página atingir o final */
body:has(:last-child:hover) .scroll-to-top {
    bottom: 60px; /* Ajustando para que não fique sobre o último conteúdo */
}
.toggle-icon {
    font-weight: bold;
    color: #007bff;
    margin-right: 5px;
}
tr.categoria:hover {
    background-color: #f0f0f0;
}

#imglogo {
  max-width:350px;
  max-height:200px;
  width: auto;;
  height: auto;
}

.image_preview {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    text-align:center;
}

.image_preview img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    text-align:center;
}

.espaco-extra {
    margin-top: 40px;
}

.desativado {
    text-decoration: line-through;
    color: #888;
    display: none; /* oculto por padrão */
}

.rasurado {
    text-decoration: line-through;
    color: #888;    
}