/* Desktop Responsive Styles */
@media (min-width: 1024px) {

    /* General layout logic */
    body {
        background-color: #f5f5f5;
    }

    .tab-indicator {
        display: none !important;
    }

    /* The top bar stays full width, "end to end like default" */
    .top-bar {
        width: 100% !important;
        left: 0 !important;
        top: 0 !important;
        position: fixed !important;
    }

    .top-bar .container {
        padding: 0 5% !important;
    }

    /* Precisely align logo with the left vertical menu below it across all sizes */
    .logo {
        position: absolute !important;
        left: 5% !important;
        width: 15% !important;
        display: flex !important;
        justify-content: center !important;
    }

    /* The container for all greeting and cards becomes the Center column */
    #payout-container {
        position: absolute !important;
        width: 50% !important;
        left: 25% !important;
        padding-bottom: 40px !important;
    }

    .sticky-filter-wrapper {
        width: auto !important;
        margin: 0 -30px !important;
        padding: 10px 30px 10px 30px !important;
    }

    .dashboard-card,
    .regular-card {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .payout-wrapper,
    .filter-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .payout-text {
        padding-left: 0 !important;
    }

    .user-id-text {
        padding-right: 0 !important;
    }

    /* Left column: Orange pill turns into 3 vertically arranged independent pill buttons */
    .orange-bar {
        position: fixed !important;
        top: 100px !important;
        left: 5% !important;
        bottom: auto !important;
        transform: none !important;
        width: 15% !important;
        height: auto !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .orange-bar .divider {
        /* Hide dividers completely on desktop */
        display: none !important;
    }

    .bar-item {
        width: 100% !important;
        text-align: center !important;
        padding: 10px 0 !important;
        font-size: 1.1rem !important;
        transform: none !important;
        background-color: #ffffff !important;
        color: #8b5cf6 !important;
        border: 2px solid #8b5cf6 !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
        cursor: pointer !important;
        transition: background-color 0.2s, color 0.2s, box-shadow 0.2s !important;
    }

    .bar-item:hover {
        background-color: #edf1f7 !important;
        box-shadow: none;
    }

    .bar-item.active {
        background-color: #8b5cf6 !important;
        color: white !important;
        box-shadow: none;
        font-size: 1.1rem !important;
        transform: none !important;
        font-weight: 700 !important;
    }

    .item-reward,
    .item-menu {
        transform: none !important;
    }

    /* Message Button Desktop Position (Fixed Far Right) */
    .payout-message-btn {
        position: fixed !important;
        top: 100px !important; /* Aligned with the left nav bar items */
        right: 5% !important;
        bottom: auto !important;
        left: auto !important;
        width: 15% !important; /* Match width of the left nav orange-bar */
        height: auto !important;
        padding: 10px 0 !important;
        background-color: #8b5cf6 !important;
        color: #ffffff !important;
        border: 2px solid #8b5cf6 !important;
        border-radius: 25px !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 12px rgba(27, 38, 59, 0.2) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        z-index: 1000 !important;
    }

    .payout-message-btn:hover {
        background-color: #2c3e50 !important;
    }

    .payout-message-btn svg {
        width: 22px !important;
        height: 22px !important;
        color: #ffffff !important;
    }

    .payout-message-text {
        display: inline !important;
        color: #ffffff !important;
    }

    .community-btn {
        margin-right: 0.5% !important;
    }
}




