.disabled-panel {
    pointer-events: none;     /* Impede interações */
    opacity: 0.5;             /* Visualmente "desligado" */
    filter: grayscale(80%);   /* Deixa o conteúdo mais neutro */
}

@media (max-width: 768px) {
    .tabela-datas thead {
        display: none;
    }

    .tabela-datas tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 1rem;
        background-color: #fff;
    }

    .tabela-datas tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .5rem 0;
        border-bottom: 1px solid #eee;
    }

    .tabela-datas tbody td:last-child {
        border-bottom: none;
    }

    .tabela-datas tbody td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #555;
    }

    .tabela-datas img {
        max-width: 100px;
        height: auto;
    }
}