/* Desktop-only styles for the main navigation menu */
@media (min-width: 1024px) {
    /* Target the specific navigation container */
    body > div.jeg_viewport > div.jeg_header_wrapper > div.jeg_header.full > div.jeg_bottombar.jeg_navbar.jeg_container.jeg_navbar_wrapper.jeg_navbar_normal > div > div > div.jeg_nav_col.jeg_nav_left.jeg_nav_grow > div {
        background-color: #6d0000 !important; /* Deep red background */
    }

    /* Change text color of menu items to white */
    body > div.jeg_viewport > div.jeg_header_wrapper > div.jeg_header.full > div.jeg_bottombar.jeg_navbar.jeg_container.jeg_navbar_wrapper.jeg_navbar_normal > div > div > div.jeg_nav_col.jeg_nav_left.jeg_nav_grow > div .menu-item a {
        color: #ffffff !important; /* White text */
    }

    /* Change text color of hovered menu items to white */
    body > div.jeg_viewport > div.jeg_header_wrapper > div.jeg_header.full > div.jeg_bottombar.jeg_navbar.jeg_container.jeg_navbar_wrapper.jeg_navbar_normal > div > div > div.jeg_nav_col.jeg_nav_left.jeg_nav_grow > div .menu-item a:hover {
        color: #ffffff !important; /* White text on hover */
    }

    /* Optional: Change the color of the dropdown menu items */
    body > div.jeg_viewport > div.jeg_header_wrapper > div.jeg_header.full > div.jeg_bottombar.jeg_navbar.jeg_container.jeg_navbar_wrapper.jeg_navbar_normal > div > div > div.jeg_nav_col.jeg_nav_left.jeg_nav_grow > div .menu-item ul li a {
        color: #ffffff !important; /* White text in dropdown */
    }

    /* Optional: Change the color of dropdown menu items on hover */
    body > div.jeg_viewport > div.jeg_header_wrapper > div.jeg_header.full > div.jeg_bottombar.jeg_navbar.jeg_container.jeg_navbar_wrapper.jeg_navbar_normal > div > div > div.jeg_nav_col.jeg_nav_left.jeg_nav_grow > div .menu-item ul li a:hover {
        color: #ffffff !important; /* White text in dropdown on hover */
    }
}