.size-chart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.size-chart-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    max-width: 600px;
    width: 90%;
    max-height: 80vh; /* Limit modal height */
    overflow-y: auto; /* Enable vertical scrolling */
}
.size-chart-btn {
    display: block;
    margin-bottom: 10px; /* Add space between the button and Add to Cart */
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.size-chart-btn:hover {
    background-color: #005880;
}
#size-chart-link {
    display: inline-block;
    color: #0A8800 !important;
    text-decoration: underline !important;
    font-size: 16px;
    margin-left: 10px; /* Adjust spacing if needed */
    cursor: pointer;
}

#size-chart-link:hover {
    color: #005880;
    text-decoration: none; /* Optional: Remove underline on hover */
}