/* 04/08/26 display table next to sketch */

.flex-container {
    display: flex;       /* Aligns children horizontally by default */
    align-items: start;  /* Keeps them aligned at the top */
    gap: 20px;           /* Adds space between image and table */
}


