.painel-reunioes {
    overflow: auto;
    height: 100vh;
    color: #FFF;
    background-color: #1b345c;
    font-family: 'Lucida Sans Unicode', sans-serif;
    font-size: 16pt;
}

.painel-reunioes .tabela-reunioes {
    width: 100%;
    border: 1px solid #ddd;
}

.painel-reunioes .tabela-reunioes th {
    background-color: #e5e5e5;
    color: #1b345c;
    padding: .4em;
}

/* Para não interferir com os ajustes de tabela para tela pequena */
@media only screen and (min-width: 992px) {
    .painel-reunioes .tabela-reunioes td {
        padding: .4em;
    }
    .painel-reunioes .tabela-reunioes tr:nth-child(even) {
        background: #2b52a0;
    }
}

@media only screen and (max-width: 991px) {
    /* Force table to not be like tables anymore */
    .painel-reunioes .tabela-reunioes table,
    .painel-reunioes .tabela-reunioes thead,
    .painel-reunioes .tabela-reunioes tbody,
    .painel-reunioes .tabela-reunioes th,
    .painel-reunioes .tabela-reunioes td,
    .painel-reunioes .tabela-reunioes tr {
        display: block;
    }

    .painel-reunioes .tabela-reunioes {
        border: none;
    }


    /* Hide table headers (but not display: none;, for accessibility) */
    .painel-reunioes .tabela-reunioes thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .painel-reunioes .tabela-reunioes tr {
        margin: 0 0 1rem 0;
    }

    .painel-reunioes .tabela-reunioes tr:nth-child(even) {
        background: #2b52a0;
    }

    .painel-reunioes .tabela-reunioes td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    .painel-reunioes .tabela-reunioes td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 0;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    /* Inserir os nomes das colunas para telas pequenas */
    .painel-reunioes .tabela-reunioes td:nth-of-type(1):before {
        content: "Previsão";
    }

    .painel-reunioes .tabela-reunioes td:nth-of-type(2):before {
        content: "Comissão";
    }

    .painel-reunioes .tabela-reunioes td:nth-of-type(3):before {
        content: "Reunião";
    }

    .painel-reunioes .tabela-reunioes td:nth-of-type(4):before {
        content: "Quórum";
    }

    .painel-reunioes .tabela-reunioes td:nth-of-type(5):before {
        content: "Situação";
    }

    .painel-reunioes .tabela-reunioes td:nth-of-type(6):before {
        content: "Local";
    }

    .painel-reunioes .tabela-reunioes td:nth-of-type(7):before {
        content: "Detalhes";
    }
}

