/* Styling for the size chart container */
.size-chart-info {
    margin-top: 20px;
}

.size-chart-info h3 {
    font-size: 24px;
    font-weight: bold;
}

.size-chart-info p {
    font-size: 16px;
    color: #555;
}

.size-chart-info img.size-chart-image {
    max-width: 250px; /* Set max width for mobile screens */
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Media Query for Larger Devices (tablet, desktop) */
@media (min-width: 768px) {
    .size-chart-info img.size-chart-image {
        max-width: 400px; /* Optionally, adjust max-width for larger devices */
    }
}

/* Make sure the table has good spacing and readability */
table.widefat {
    width: 100%;
    border-collapse: collapse;
}

table.widefat th, table.widefat td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Striped rows for the table */
table.widefat.striped tr:nth-child(odd) {
    background-color: #f9f9f9;
}

table.widefat.striped tr:nth-child(even) {
    background-color: #ffffff;
}

/* Highlight editable cells */
table.widefat td.editable,
table.widefat th.editable {
    background-color: #ffffe0; /* Light yellow for editable cells */
    cursor: pointer;
}

table.widefat td.editable:empty {
    background-color: #fff;
}
