﻿.table-div {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
}

.meetingTable {
    width: 800px;
    background-color: #f3f0f0;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,.3);
    border-collapse: separate;
}

    .meetingTable thead {
        background-color: #efb864;
    }

    .meetingTable th, .meetingTable td {
        border: 1px solid rgba(0, 0, 0, .1);
        text-align: center;
        height: 28px;
        font-size: 12px;
    }
