/* Border styles */
.menology-table table thead,
.menology-table table tr {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(230, 189, 189);
    min-height: 50px;
    text-align: center;
}

.menology-table table {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(230, 189, 189);
}

/* Padding and font style */
.menology-table table td,
.menology-table table th {
    padding: 5px 10px;
    font-size: 24px;
    font-family: Verdana;
    color: rgb(177, 106, 104);
}

/* Alternating background colors */
.menology-table table tr:nth-child(even) {
    background: rgb(238, 211, 210)
}

.menology-table table tr:nth-child(odd) {
    background: #FFF
}