/* Menu Dropdown Position Fix - 2026-02-18 */
/* Fix dropdown menus opening off-screen to the left */

.sf-menu li.sfHover ul,
.sf-menu li:hover ul {
  left: 0 !important;  /* Changed from 5px to 0 - opens aligned with parent */
}

.sf-menu > li:first-child.sfHover ul,
.sf-menu > li:first-child:hover ul {
  left: 0 !important;  /* Changed from -21px to 0 */
}

/* For right-side menu items, open to the left */
.sf-menu > li:last-child ul,
.sf-menu > li:nth-last-child(2) ul {
  left: auto !important;
  right: 0 !important;
}
