.wpdt-scroll-container {
  max-height: 600px;        /* Adjust height as needed */
  overflow-y: auto;         /* Enable vertical scrolling */
  border: 1px solid #000;   /* Optional: light border */
  padding: 10px;
  box-sizing: border-box;
  background-color: #000;   /* Optional background */
}

/* Optional: customize scrollbar for modern look */
.wpdt-scroll-container::-webkit-scrollbar {
  width: 8px;
}
.wpdt-scroll-container::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 4px;
}
.wpdt-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #777;
}

.gold-menu a {
    color: #FFD700 !important;
    font-weight: 600;
}

.gold-menu a:hover {
    color: #ffcc00 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}


/* PREMIUM TRADEX MENU STYLE */

.main-navigation a,
.elementor-nav-menu a,
.menu a {
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 14px 18px !important;
    transition: all 0.25s ease;
}

/* Hover glow */
.main-navigation a:hover,
.elementor-nav-menu a:hover,
.menu a:hover {
    color: #31b8ff !important;
    text-shadow: 0 0 8px rgba(49, 184, 255, 0.85),
                 0 0 18px rgba(49, 184, 255, 0.45);
}

/* Active/current menu item */
.current-menu-item > a,
.current_page_item > a,
.elementor-item-active {
    color: #31b8ff !important;
    text-shadow: 0 0 8px rgba(49, 184, 255, 0.7);
}

/* Premium underline animation */
.elementor-nav-menu a,
.main-navigation a,
.menu a {
    position: relative;
}

.elementor-nav-menu a::after,
.main-navigation a::after,
.menu a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #31b8ff, transparent);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.25s ease;
}

.elementor-nav-menu a:hover::after,
.main-navigation a:hover::after,
.menu a:hover::after,
.current-menu-item > a::after,
.current_page_item > a::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Make EVOLVED gold */
.gold-menu a {
    color: #ffd35a !important;
    text-shadow: 0 0 8px rgba(255, 211, 90, 0.65),
                 0 0 18px rgba(255, 170, 0, 0.35);
}

.gold-menu a::after {
    background: linear-gradient(90deg, transparent, #ffd35a, transparent) !important;
}

.gold-menu a:hover {
    color: #fff1b8 !important;
    text-shadow: 0 0 10px rgba(255, 211, 90, 0.9),
                 0 0 22px rgba(255, 170, 0, 0.55);
}

/* Optional: premium dark menu background */
.site-header,
.elementor-location-header,
header {
    background: rgba(0, 0, 0, 0.92) !important;
    border-bottom: 1px solid rgba(49, 184, 255, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}



/* Make dropdown menus solid black instead of grey */
.elementor-nav-menu .sub-menu,
.main-navigation ul ul,
.menu ul ul {
    background: #000000 !important;
}

/* Optional: clean hover look (still subtle, not changing your style much) */
.elementor-nav-menu .sub-menu a:hover,
.main-navigation ul ul a:hover,
.menu ul ul a:hover {
    background: rgba(255, 255, 255, 0.05);
}