        /* App Launcher - follows Cuba template patterns */
        #app-launcher {
            position: relative;
            cursor: pointer;
        }

        #app-launcher>svg {
            vertical-align: middle;
            width: 20px;
            height: 20px;
            stroke: none;
            fill: rgba(47, 47, 59, 0.9);
            transition: all 0.3s ease;
        }

        #app-launcher:hover>svg {
            fill: var(--theme-deafult);
        }

        /* Dropdown - uses Cuba .onhover-show-div pattern */
        .app-dropdown-menu {
            position: absolute;
            top: 50px;
            right: 0;
            left: unset;
            width: 380px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
            z-index: 8;
            transition: all linear 0.3s;
            transform: translateY(30px);
            opacity: 0;
            visibility: hidden;
            overflow: hidden;
        }

        .app-dropdown-menu.show {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }

        .app-dropdown-menu::before {
            width: 0;
            height: 0;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-bottom: 7px solid var(--theme-deafult);
            content: "";
            top: -7px;
            position: absolute;
            right: 10px;
            z-index: 2;
        }

        .app-dropdown-menu::after {
            width: 0;
            height: 0;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-bottom: 7px solid #d7e2e9;
            content: "";
            top: -7px;
            position: absolute;
            right: 10px;
            z-index: 1;
        }

        /* Header - uses Cuba dropdown-title pattern */
        .app-dropdown-header {
            padding: 15px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(145, 142, 153, 0.3);
            background-color: var(--theme-deafult);
            border-radius: 15px 15px 0 0;
            position: relative;
            z-index: 10;
        }

        .app-dropdown-header h6 {
            margin: 0;
            font-family: Rubik, sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .app-dropdown-header h6 i {
            margin-right: 6px;
        }

        /* Scrollable content area */
        .app-dropdown-content {
            padding: 15px;
            max-height: 420px;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .app-dropdown-content::-webkit-scrollbar {
            width: 5px;
        }

        .app-dropdown-content::-webkit-scrollbar-track {
            background: var(--light-bg);
            border-radius: 10px;
        }

        .app-dropdown-content::-webkit-scrollbar-thumb {
            background: var(--theme-deafult);
            border-radius: 10px;
        }

        /* Category sections */
        .app-category-section {
            margin-bottom: 15px;
        }

        .app-category-section:last-child {
            margin-bottom: 0;
        }

        .app-category-label {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 10px;
            margin-bottom: 10px;
            background-color: var(--light-background);
            border-radius: 8px;
        }

        .app-category-label h6 {
            margin: 0;
            font-family: Rubik, sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--body-font-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .app-category-label i {
            font-size: 14px;
            color: var(--theme-deafult);
        }

        /* App grid */
        .app-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        /* App item - follows Cuba bookmark icon pattern */
        .app-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px 6px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            background-color: transparent;
        }

        .app-item:hover {
            background-color: var(--light-background);
            text-decoration: none;
            color: inherit;
        }

        .app-item:hover .app-name {
            color: var(--theme-deafult);
        }

        .app-item:hover .app-icon {
            box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
            border-color: var(--theme-deafult);
        }

        .app-item:hover .app-icon img {
            transform: scale(1.08);
        }

        /* App icon - Cuba bookmark-icon pattern */
        .app-icon {
            width: 52px;
            height: 52px;
            background-color: #f9f9f9;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 6px;
            transition: all 0.3s ease;
            border: 1px solid #ecf3fa;
            overflow: hidden;
        }

        .app-icon img {
            width: 36px;
            height: 36px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        /* App name - Cuba bookmark span pattern */
        .app-name {
            font-family: Roboto, sans-serif;
            font-size: 11px;
            text-align: center;
            color: var(--body-font-color);
            font-weight: 500;
            letter-spacing: 0.5px;
            word-break: break-word;
            max-width: 100%;
            transition: color 0.3s ease;
            line-height: 1.3;
        }

        .app-loader {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .app-loader .spinner-border {
            color: var(--theme-deafult);
        }

        /* View All Link - Cuba style */
        .app-view-all {
            text-align: center;
            padding: 12px;
            border-top: 1px solid #ecf3fa;
            background-color: transparent;
        }

        .app-view-all a {
            font-family: Roboto, sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: var(--theme-deafult);
            letter-spacing: 0.3px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .app-view-all a:hover {
            color: var(--theme-secondary);
        }

        /* Dark Mode - follows Cuba dark-only patterns */
        body.dark-only .app-dropdown-menu {
            background-color: #1d1e26;
            box-shadow: 0 0 2px 2px #262932;
        }

        body.dark-only .app-dropdown-header {
            border-bottom-color: #374558;
        }

        body.dark-only .app-dropdown-content {
            background-color: #1d1e26;
        }

        body.dark-only .app-dropdown-content::-webkit-scrollbar-track {
            background: #262932;
        }

        body.dark-only .app-category-label {
            background-color: #262932;
        }

        body.dark-only .app-category-label h6 {
            color: rgba(255, 255, 255, 0.6);
        }

        body.dark-only .app-item:hover {
            background-color: #262932;
        }

        body.dark-only .app-icon {
            background-color: #262932;
            border-color: #374558;
        }

        body.dark-only .app-name {
            color: rgba(255, 255, 255, 0.6);
        }

        body.dark-only .app-view-all {
            border-top-color: #374558;
        }

        @media (max-width: 575.98px) {
            .app-dropdown-menu {
                width: calc(100vw - 30px);
            }

            .app-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }