body {
    position: relative;
    border-radius: 8px;
    box-shadow: black 0px 0px 2px;
    margin: 0px auto;
    border: solid 1px black;
    font-family: arial, sans-serif;
    padding: 0px;
}

#club-house {
    background-color: #D0D8CD;
}

#side-panel {
    background-color: #dddddd;
    padding: 0px;
}

#meeting-container {
    display: none;
    background-color: #dddddd;
    border: rgb(108, 134, 120);
    border-width: thin;
    border-style: solid;
    flex-direction: row;
    flex-wrap: wrap;
}

#card-table {
    background-color: #5F9C5F;
    position: relative;
    height: 500px;
    width: 500px;
    border: solid 6px rgb(108, 134, 120);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    box-shadow: #111 1px 1px 2px;
    z-index: 0;
    /* meeting container under card table */
}

.meeting-div {
    background-color: #BBBBBB;
    padding: 0px;
    position: relative;
    border: #9DB89D;
    border-width: medium;
    border-style: solid;
}

.seatname_class {
    color: rgb(186, 218, 195);
}

.overlayText {
    /* for meeting user name */
    /*position: relative;
    left: 10px;
    z-index: 1;*/
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #5F9C5F;
    /*unmated */
    padding: 0px;
    z-index: 1;
}