/* Table Formatting */
table {
    width: 100%;
    border-collapse: collapse;
}

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

thead {
    background-color: #f2f2f2;
}

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

/* Caption Tag */
caption {
    font-weight: bold;
    font-size: 1.5em;
    margin: 10px 0;
}

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

/* Price Class */
.price {
    white-space: nowrap; /* Prevent word wrapping */
}

/* Specialty Class */
.specialty {
    font-weight: bold; /* Emphasize specialty items */
}

/* ID For Validation Link */
#validation {
    text-align: center; /* Center align validation link */
    padding: 20px 0; /* Add some spacing */
}

/* Media Query to hide image below 550px */
@media screen and (max-width: 550px) {
    img.responsive {
        display: none; /* Hides the image when screen size is below 550px */
    }
}