/* size chart table */

.size-chart-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.size-chart-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    /* background: #f0f8ff; */
    background:#eff6f8;
    border: 2px solid #eceff1;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: auto;
    max-height: 600px;
}
.size-chart-scroll {
    min-width: 100%;
}
.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--size-chart-header-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.size-chart-header {
    background: linear-gradient(to right, #e6f3ff, #f0f8ff);
    position: sticky;
    top: 0;
    z-index: 10;
   
}
.size-chart-th {
    padding: 15px;
    text-align: center;
    border: 1px solid #e6f3ff;
    /* color: red; */
    color: var(--size-chart-header-text) !important;
    background:var(--size-chart-header-bg)!important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95em;
    letter-spacing: 0.5px;
}
.size-chart-td {
    padding: 12px;
    text-align: center;
    border: 1px solid #e6f3ff;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}
.size-chart-td:hover {
    transform: scale(1.1);
    z-index: 20;
    background-color: #fff !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.size-chart-tr:nth-child(even) .size-chart-td {
    background-color: var(--size-chart-body-bg) !important;
    color: var(--size-chart-body-text) !important;
}
.size-chart-tr:nth-child(odd) .size-chart-td {
    background-color: color-mix(in srgb, var(--size-chart-body-bg) 70%, white) !important;
    color: var(--size-chart-body-text) !important;
}
.size-chart-tr {
    transition: all 0.3s ease;
}
.size-chart-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}