/* Make image smaller to fit within dropdown */
.menu img,
.cd-dropdown img,
.cd-dropdown-content img {
    max-width: 150px !important;  /* Start small and increase gradually */
    width: 150px !important;
    height: auto !important;
}
.menu img,
.cd-dropdown img {
    max-width: 700px !important;  /* Set to your desired image width */
    width: auto !important;
    height: auto !important;
}

/* Prevent parent containers from clipping */
.cd-dropdown,
.menu-wrapper {
    overflow: visible !important;
}

/* Fix parent container constraints */
.menu li {
    overflow: visible !important;
}