    /* Hide toggle on desktop */
    @media (min-width: 1200px) {
        .tdmenu-offcanvas-open-btn {
            display: none !important;
        }
    }

    /* Style for mobile hamburger button */
    .tdmenu-offcanvas-open-btn {
        background: none;
        border: none;
        cursor: pointer;
        width: 35px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-left: auto;
        /* push to right if no Bootstrap */
    }

    /* Hamburger lines */
    .tdmenu-offcanvas-open-btn span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #fff;
        /* white for dark header */
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Optional: hide search & cart on mobile */
    @media (max-width: 1199px) {

        .search-button,
        .td-header-cart {
            display: none !important;
        }
    }

    .scope-list ul {
        list-style: disc !important;
        margin-left: 25px !important;
    }

    .scope-list ul li {
        list-style-type: disc !important;
    }

    .collab-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #ffffff;
        border: 1px solid #ddd;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        height: 100%;
        /* important */
    }

    .collab-box .table {
        margin-bottom: 0;
    }

    .collab-box table th,
    .collab-box table td {
        vertical-align: middle;
        text-align: left;
    }

    .collab-box img {
        display: block;
        margin: 0 auto;
        max-height: 80px;
        width: auto;
        object-fit: contain;
    }