/* table formatting */
table {
    border-collapse: collapse;
    margin: auto;
    width: 90%;
    font-family: Arial, sans-serif;
}

th, td {
    border: 1px solid #739c3c;
    padding: 12px;
    text-align: left;
}

thead th {
    background-color: #3a7241;
    font-size: 1.1em;
}

tfoot td {
    font-size: 0.85em;
    font-style: italic;
    text-align: center;
}

tbody tr:nth-of-type(odd) {
    background-color: #F5F5DC;
}

tbody tr:nth-of-type(even) {
    background-color: #FFF8DC;
}

tbody tr:first-of-type {
    font-weight: bold;
}

/* caption tag */
caption {
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px;
    caption-side: top;
    color: #4B2E2E;
}

/* responsive image class */
.responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* price and specialty classes */
.price {
    white-space: nowrap;
}

.specialty {
    white-space: nowrap;
}

/* ID */
#validation {
    font-size: 0.9em;
    text-align: center;
    margin-top: 20px;
}

/* media query that hides the image when the screen size is @ 550 pixels or lower */
@media only screen and (max-width: 550px) {
    .responsive {
        display: none;
    }
}
