/* Sticky Footer Ad Container */
        .customqwe-sticky-footer-ad-container {
        position: fixed;
        bottom: 70px; /* Default: 80px above the sticky footer for mobile */
        left: 0;
        width: 100%;
        z-index: 999;
        text-align: center;
        background: hsla(0, 0%, 100%, .5);
        padding: 1px;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }

    /* Override for Desktop Screens */
    @media (min-width: 1025px) {
        .customqwe-sticky-footer-ad-container {
            bottom: 0; /* Set to 0 for desktop */
            padding-bottom: 0; /* Remove bottom padding for desktop */
        }
    }

    /* Remove the fixed height for the ad container */
    .customqwe-sticky-footer-ad-container {
        height: auto;
        max-height: none;
    }

        /* Sticky Footer Menu */
        .customqwe-sticky-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #f8f9fa;
            display: flex;
            justify-content: space-around;
            padding: 1px 0;
            z-index: 1000;
            box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
            border-top: 2px solid #ddd;
        }

        @media (min-width: 1025px) {
            .customqwe-sticky-footer {
                display: none; /* Hide on desktop */
            }
        }

        /* Menu Item Container */
        .customqwe-menu-item {
            flex: 1;
            text-align: center;
            position: relative;
        }

        /* General Menu Links */
        .customqwe-menu-item a {
            text-decoration: none;
            color: #333;
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        /* Menu Icon */
        .customqwe-menu-item .menu-icon {
            font-size: 20px;
            color: #007bff;
            margin-bottom: 5px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        /* Hover Effects for All Menu Items */
        .customqwe-menu-item a:hover {
            transform: scale(1.1);
            color: #ff5722;
        }

        .customqwe-menu-item a:hover .menu-icon {
            color: #ff5722;
        }

        /* Premium Styling for MF11 Pro */
        .customqwe-menu-item .mf11-pro {
            background: linear-gradient(90deg, #359b0a, #359b0a);
            border-radius: 30%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
            font-weight: bold;
            font-size: 14px;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: auto;
        }

        .mf11-pro { 
            color: #fff !important;
        }

        /* Badge Styling for MF11 Pro */
        .customqwe-menu-item .mf11-pro .badge-new {
            background: #ff0000;
            color: #fff;
            font-size: 8px;
            font-weight: bold;
            text-transform: uppercase;
            padding: 2px 5px;
            border-radius: 10px;
            position: absolute;
            top: -5px;
            right: -5px;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Slide-In More Menu */
        .customqwe-more-slide-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100%;
            background: #ffffff;
            z-index: 1100;
            transition: right 0.3s ease-in-out;
            overflow-y: auto;
            padding: 20px;
            box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
            border-left: 2px solid #ddd;
        }

        /* Active State for More Menu */
        .customqwe-more-slide-menu.active {
            right: 0;
        }

        /* Close Button for More Menu */
        .customqwe-more-header {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }

        .customqwe-close-button {
            background: #f0f0f0;
            border: none;
            font-size: 16px;
            color: #333;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .customqwe-close-button:hover {
            background: #e0e0e0;
        }

        /* Menu List Styling */
        .customqwe-more-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .customqwe-more-menu-list li {
            padding: 12px 15px;
            border-bottom: 1px solid #ddd;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            cursor: pointer;
        }

        .customqwe-more-menu-list li:hover {
            background: #f8f9fa;
        }

        /* Submenu Styling */
        .customqwe-more-menu-list .sub-menu {
            display: none;
            padding-left: 15px;
            margin-top: 5px;
            background: #f9f9f9;
        }

        .customqwe-more-menu-list li.open .sub-menu {
            display: block;
        }

        /* Highlight Active Menu Item */
        .customqwe-more-menu-list li.active {
            background: #e6f7ff;
            color: #007bff;
            font-weight: bold;
        }
        
.customqwe-close-ad-button {
    position: absolute;
    top: -10px;
    right: 25px;
    background: #359b0a; /* Brand color */
    border: none;
    font-size: 10px;
    color: #fff; /* White color for the "X" */
    padding: 3px 3px;
}

.customqwe-close-ad-button:hover {
    background: #2b7b08; /* Darker shade for hover */
}      

/* Login Drawer Styles */
.mf11-login-drawer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.mf11-login-content {
    padding: 20px;
    position: relative;
}

.mf11-close-login {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #359b0a;
    color: #fff;
    border: none;
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
}