/* Premium Drawer Size Chart v1.2 */

.lite-size-chart-trigger {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

#lite-size-chart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 9998;
}

#lite-size-chart-modal {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #F0E5DB;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 9999;
    padding-bottom: 24px;
}

#lite-size-chart-modal.active {
    transform: translateY(0);
}

#lite-size-chart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lite-size-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
}

.lite-size-chart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.lite-size-chart-close {
    font-size: 26px;
    cursor: pointer;
}

.lite-size-chart-card {
    background: #fff;
    margin: 0 20px;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.lite-size-chart-card table {
    width: 100%;
    border-collapse: collapse;
}

/* USER REQUESTED STYLES */
.lite-size-chart-card th {
    background: #102239;
    color: #fff;
    font-weight: 600;
}

.lite-size-chart-card th,
.lite-size-chart-card td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 14px;
}

.lite-size-chart-card .note {
    margin-top: 14px;
    font-size: 13px;
    color: #555;
    text-align: center;
}
