/* 
    Author: Jacob Monacelli
	Course: ITWP 1000
    File: styles.css
    Date: 2025-11-06
*/

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9f7f3;
    color: #333;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #5c3d2e;
}

p {
    line-height: 1.5;
    margin: 1em;
}

div {
    width: 90%;
    margin: auto;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px auto;
}

th, td {
    border: 1px solid #5c3d2e;
    padding: 10px;
    text-align: left;
}

thead th {
    background-color: #d2b48c;
    color: #fff;
}

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

tfoot td {
    background-color: #f5deb3;
    text-align: center;
    font-size: 0.9em;
}

caption {
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #5c3d2e;
}

.responsive {
    width: 100%;
    height: auto;
}

.price {
    white-space: nowrap;
}

.specialty {
    white-space: nowrap;
    font-weight: bold;
}

#validation {
    text-align: center;
    font-size: 0.8em;
}

@media screen and (max-width: 550px) {
    img.responsive {
        display: none;
    }
}
