/* ITWP 1000 Homework 4
   Author: Your Name
   Description: CSS file for Coffeetable page
*/

/* Table formatting */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

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

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

/* Caption tag */
caption {
    caption-side: top;
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Responsive image class */
.responsive {
    max-width: 100%;
    height: auto;
}

/* Price and Specialty */
.specialty {
    white-space: nowrap;
    font-weight: bold;
}

.price {
    white-space: nowrap;
    color: green;
}

/* ID */
#validation {
    font-weight: bold;
    color: blue;
}

/* Media query hides image when screen < 550px */
@media screen and (max-width: 550px) {
    .responsive {
        display: none;
    }
}

/* Basic page formatting */
body {
    font-family: Arial, sans-serif;
    margin: 10px;
    background-color: #f4f4f4;
    color: #333;
}

h1 {
    text-align: cen
