body {
    margin: 20px;
}

.productBody {
    background-color: #EBF5FA;
    padding: 20px;
    border-radius: 8px;
    /* border: 1px solid #b3a084; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-info th,
.product-info td {
    border: 1px solid #000;
}

.product-info-table {
    background-color: #ffffff;
    color: #212529
}

/* --- WCAG FIX: Added clear focus state (2.4.7) --- */
a:focus,
button:focus,
input:focus,
video:focus {
    outline: 4px solid #cc0000; /* High-contrast red focus ring */
    outline-offset: 3px;
    border-radius: 2px;
}

/* Apply Dark Blue/Navy styling to the row headers (which act as column headers in the vertical layout) */
.product-detail-header {
    /* width: 35%; */
    background-color: #0d426d;
    color: #ffffff;
    /* White text for contrast */
    font-weight: bold;
    vertical-align: middle;
    text-align: center;
    text-transform: capitalize;
    /* padding: 0.75rem; */
}

/* Apply Dark Blue/Navy styling to the SEMANTIC TABLE HEADERS (TH) */
/* Aligned left for better readability on the label side */
.product-info th {
    /* Styles for the key/label side of the table (now a TH element) */
    /* width: 35%;
    background-color: #0d426d;
    color: #ffffff;
    font-weight: bold;
    vertical-align: middle;
    text-align: left; 
    padding: 0.75rem; */
}

.product-info-table{
    width: 100%;
}

.imgGallery{
    align-items: baseline;
}

/* Set the cell backgrounds to white/light grey */
.product-info td,
.product-info th {
    vertical-align: middle;
    padding: 0.75rem;
}
.yllLink{
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.yllImg{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.yllImg:hover{
    border-radius: 10px;
    transform: scale(1.25);
    z-index: 2;
}

/* Style for the new footer */
.accessibility-footer {
    padding: 10px;
    text-align: center;
}

.accessibility-footer a {
    color: #0d426d; /* Ensure link color has good contrast */
    text-decoration: none;
}

.accessibility-footer a:hover {
    text-decoration: underline;
}