/* ================== Sticky Scroll Menu Enhancements ================== */
.mah-subnav {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  /* Dropdown container */
  .mah-subnav-list li {
    position: relative;
  }
  
  .mah-subnav-list .dropdown {
    display: none;
    position: fixed;
    top: 60px; /* adjust based on your sticky menu height */
    left: auto;
    min-width: 180px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 99999;
  }
  
  .mah-subnav-list li:hover .dropdown {
    display: block;
  }
  
  .mah-subnav-list .dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
  }
  
  .mah-subnav-list .dropdown a:hover {
    background-color: #f1f5f9;
  }
  
  .menu-label {
    display: inline-block;
    padding: 10px 18px;
    background-color: transparent;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    line-height: 1;
  }
  
  /* Debug: Force wrapper containers to allow dropdowns to overflow */
  #inner-wrap,
  .wrap,
  .site-main {
    overflow: visible !important;
  }
  
  html, body {
    overflow-x: hidden;
    overflow-y: auto;
  }