body {
    margin: auto;
    max-width: 60em;
    font-family:'Courier New', Courier, monospace;
    background-color: #EEE9DA;
}

a:link, a:visited {
    background-color:#BDCDD6;
    color: black;
    padding: 14px 14px;
    margin: 2px 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 15px;
}

a:hover {
    background-color: #93BFCF;
}

a:active {
    background-color: #93BFCF;
}

h1 {
    color: #EEE9DA;
    background-color: #6096B4;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    padding: 14px 25px;
    border-radius: 15px;
}

input[type=submit] {
    background-color: #BDCDD6;
    font-family: 'Courier New', Courier, monospace;
    border: none;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    margin: 0px 2px;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
}

input[type=submit]:hover {
    background-color: #93BFCF;
}

.table_component {
    overflow: auto;
    width: 100%;
}

.table_component table {
    border: 1px solid #6096B4;
    height: 100%;
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
}

.table_component caption {
    caption-side: top;
    text-align: left;
}

.table_component th {
    border: 1px solid #6096B4;
    background-color: #BDCDD6;
    color: #000000;
    padding: 5px;
}

.table_component td {
    border: 1px solid #6096B4;
    background-color: #EEE9DA;
    color: #000000;
    padding: 5px;
}