.cc25-nav-container {
        display: flex;
        padding: 50px 10px;
        height: 550px;
        background-image: url('/wp-content/themes/ark-child/caricom-2025/images/tournament_home_links.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;        
    }
    
    img.cc25-nav-background {
        position: absolute;
        z-index: -1;
        width: -webkit-fill-available;
        width: -moz-available;
    }

    .cc25-sidebar {
        flex: 1 1 auto;
        img {
                width: 33%;
            }        
    }

    .cc25-icon {
        width: 33%;
        svg {
            fill: #FFF;
        }
    }
    
    
    .cc25-nav-card {
        width: 300px;
        height: 300px;
        /* From https://css.glass */
        background: rgba( 35, 90, 154, 0.6 );
        box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
        backdrop-filter: blur( 2px );
        -webkit-backdrop-filter: blur( 2px );
        border-radius: 10px;
        border: 1px solid rgba( 255, 255, 255, 0.18 );

    }

    .cc25-nav-header {
        border-radius: 10px 10px 0px 0px;
        padding: 5px;
        background-color: #363b97;
    }

    h3 {
        color: #FFFFFF;
        font-family: 'Roboto', sans-serif;
        margin-left: 1rem;
        margin-bottom: 0;
        font-size: 1.5em;
        font-weight: 400;
    }

    .cc25-nav-iconM {
        font-size: 18px;
        margin-left: 170px;
        color: #2f89fc;
    }

    .cc25-nav-icon {
        margin-right: 8px;
    }

    .cc25-nav-body li {
        transition: 1s all;
        font-family: 'Roboto', sans-serif;
        font-size: 1.1em;
        padding: 10px;
        margin-left: -40px;
        margin-top: 0px;
        color: #fff;
        list-style: none;
        display: block;
        border-top-right-radius: 10px 10px;
        border-bottom-right-radius: 10px 10px;
    }

    li:hover {
        transition: 1s all;
        color: #2f89fc;
        background-color: rgba(42, 56, 65, 0.82);
        border-top-right-radius: 10px 10px;
        border-bottom-right-radius: 10px 10px;
        cursor: pointer;
    }

    .cc25-nav-body>li {
        float: left;
    }
    .cc25-nav-body li a {
        color: inherit;
        text-decoration: none;
    }        
    
    
    .cc25-nav-body li a:hover a:visited{
        color: inherit;
        text-decoration: none;
    }

    .cc25-nav-body li ul {
        margin-left: 175px;
        margin-top: -38px;
        display: none;
        position: absolute;
        width: 75%;
        border-top-right-radius: 15px 15px;
        border-bottom-right-radius: 15px 15px;

        background: rgba(  66, 187, 232, 0.60 );
        box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
        backdrop-filter: blur( 2px );
        -webkit-backdrop-filter: blur( 2px );
        border-radius: 10px;
        border: 1px solid rgba( 255, 255, 255, 0.18 );

        @media only screen and (max-width: 768px) {
            margin-left: 125px;
        }

    }

    .cc25-nav-body li:hover>ul {
        display: block;
        cursor: pointer;
    }

    .disabled-item {
        color: #aeaeae !important;
        font-style: italic;
    }

    .disabled-item:hover {
        cursor:not-allowed;
    }

/* --- Cross-browser Compatibility Enhancements for Navigation --- */

/* Flexbox prefixes for nav containers */
.navbar,
.navbar-nav,
.navbar-menu,
.navbar-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Flex direction if needed */
.navbar-nav,
.navbar-menu,
.navbar-links {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

/* Border radius for nav elements */
.navbar,
.navbar-nav,
.navbar-menu,
.navbar-links,
.navbar-item,
.navbar-link {
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

/* Transition for hover/focus states */
.navbar-link,
.navbar-item {
    -webkit-transition: background 0.3s, color 0.3s;
    -moz-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

/* Gradient backgrounds for nav (if used) */
.navbar,
.navbar-menu {
    background: #fff;
    background: -webkit-linear-gradient(top, #fff, #f0f0f0);
    background: linear-gradient(to bottom, #fff, #f0f0f0);
}

/* Remove nested selectors (convert to flat CSS) */
/* Example: 
.navbar .navbar-link:hover { ... }
*/

/* Responsive menu (if used) */
@media screen and (max-width: 782px) {
    .navbar,
    .navbar-nav,
    .navbar-menu,
    .navbar-links {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

/* --- End Cross-browser Compatibility Enhancements --- */
