/* Flex container for the image and table */
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Individual flex items */


/* Image container */
.image-container {
    flex: 1;
    text-align: center;
}

.img-fluid {
    height: auto;
}

/* Table container */
.table-container {
    flex: 2;

/* Responsive adjustments */
@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        align-items: center;
    }

    .table-container {
        margin-top: 20px;
    }
}
