
    .global-back-btn {
        position: fixed;
        top: 80px;
        right: 130px;
        z-index: 1040;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0;
        background: none;
        border: none;
        color: #2563eb;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        outline: none;
        transition: opacity 0.2s ease;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    .global-back-btn:hover {
        opacity: 0.8;
        text-decoration: none;
    }

    .global-back-btn:active {
        opacity: 0.6;
    }

    .back-icon {
        font-size: 18px;
        font-weight: 600;
        color: #2563eb;
        display: inline-block;
        line-height: 1;
    }

    .back-btn-text {
        font-weight: 500;
        color: #2563eb;
        letter-spacing: 0;
    }

    /* Hide back button on homepage and feed page */
    body.homepage .global-back-btn,
    body.feed-page .global-back-btn {
        display: none !important;
    }

    /* Mobile styles */
    @media (max-width: 991px) {
        .global-back-btn {
            top: 70px;
            right: 12px;
            font-size: 14px;
        }

        .back-icon {
            font-size: 16px;
        }

        .back-btn-text {
            display: none;
        }
    }

    /* Hide on very small screens if needed */
    @media (max-width: 360px) {
        .global-back-btn {
            top: 65px;
            right: 10px;
            font-size: 13px;
        }

        .back-icon {
            font-size: 15px;
        }
    }

    /* Adjust position when navigation is fixed */
    @media (min-width: 992px) {
        .global-back-btn {
            top: 110px;
        }
    }