/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Default to row layout */
<style>
    #size_chart_row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/* Stack images vertically on small screens */
@media (max-width: 767px) {
    #size_chart_row {
        flex-direction: column;
        align-items: center;
    }

    #size_chart_image_men,
    #size_chart_image_women {
        max-width: 80%;
    }
}

</style>