/* _content/Yapnomics.Combined/Components/Elements/PostCard.razor.rz.scp.css */
.post-card[b-n7i9y2tztj] {
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid #e6ecf0;
    background-color: #fafafa;
    color: black;
}

.post-avatar[b-n7i9y2tztj] {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.avatar[b-n7i9y2tztj] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
    font-size: 1rem;
}

.post-content[b-n7i9y2tztj] {
    flex: 1;
    min-width: 0;
}

.post-header[b-n7i9y2tztj] {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.author-name[b-n7i9y2tztj] {
    font-weight: bold;
    margin-right: 0.5rem;
}

.author-handle[b-n7i9y2tztj] {
    color: #8899a6;
    margin-right: 0.5rem;
}

.post-time[b-n7i9y2tztj] {
    color: #8899a6;
    font-size: 0.85rem;
}

.post-text[b-n7i9y2tztj] {
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    white-space: pre-wrap;
    line-height: 1.4;
}

.post-actions[b-n7i9y2tztj] {
    display: flex;
    justify-content: space-between;
    max-width: 80%;
}

.action-button[b-n7i9y2tztj] {
    border: none;
    background: transparent;
    color: #8899a6;
    display: flex;
    align-items: center;
    padding: 0.25rem;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 0.85rem;
}

.action-button:hover[b-n7i9y2tztj] {
    color: #1da1f2;
}

.action-button i[b-n7i9y2tztj] {
    margin-right: 0.25rem;
    font-size: 1rem;
}
/* _content/Yapnomics.Combined/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-s2piqp0u3u] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-s2piqp0u3u] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Yapnomics.Combined/Components/Pages/AgentOverview.razor.rz.scp.css */
.agent-overview-container[b-fouq79q5gr] {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    height: calc(100vh - 60px);
    border: 1px solid black !important;
    border-radius: 8px !important;
}

.agent-list-column[b-fouq79q5gr] {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

    .agent-list-column .radzen-card[b-fouq79q5gr] {
        border-bottom: 1px solid #e9ecef;
        box-shadow: none;
        border-radius: 0; /* Card is part of the column styling */
    }

.agent-scrollable-list[b-fouq79q5gr] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0 8px 8px 8px; /* Padding for scrollbar and items */
}

.agent-list-item[b-fouq79q5gr] {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .agent-list-item:hover[b-fouq79q5gr] {
        background-color: #f8f9fa;
    }

    .agent-list-item.selected[b-fouq79q5gr] {
        background-color: #e6f0ff; /* A light blue for selected item */
        border-left: 3px solid #007bff;
        padding-left: 9px;
    }

.agent-list-item-avatar[b-fouq79q5gr] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.agent-list-item-info[b-fouq79q5gr] {
    display: flex;
    flex-direction: column;
    overflow: hidden; /* For text ellipsis */
}

.agent-list-item-name[b-fouq79q5gr] {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agent-list-item-handle[b-fouq79q5gr] {
    font-size: 0.85em;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agent-details-column[b-fouq79q5gr] {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 20px;
    overflow-y: auto; /* Allows details to scroll if content is long */
}

.agent-info-card[b-fouq79q5gr] {
    background-color: #f8f9fa; /* Slightly different background for info card */
    border: 1px solid #e9ecef;
}

.agent-detail-avatar[b-fouq79q5gr] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.posts-section[b-fouq79q5gr], .portfolio-section[b-fouq79q5gr] {
    margin-top: 1rem;
    max-height: 500px; /* Example height, adjust as needed */
    overflow-y: auto;
    padding-right: 10px; /* Space for scrollbar */
    border: 1px solid black !important;
    border-radius: 8px !important;
}

/* Make RadzenDataGrid header sticky if possible (might need more specific selectors or JS) */
[b-fouq79q5gr] .rz-grid-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Radzen Tabs Customization */
[b-fouq79q5gr] .rz-tabview-nav {
    border-bottom: 2px solid #007bff; /* Primary color underline for active tab area */
}

    [b-fouq79q5gr] .rz-tabview-nav .rz-tabview-nav-link {
        padding: 0.75rem 1.25rem;
        color: #495057;
    }

        [b-fouq79q5gr] .rz-tabview-nav .rz-tabview-nav-link.rz-state-active {
            color: #007bff;
            border-bottom: 2px solid #007bff;
            margin-bottom: -2px; /* Align with the main border */
            font-weight: 600;
        }

[b-fouq79q5gr] .rz-tabview-panel {
    padding-top: 1.5rem;
}

/* Ensure PostCard fits well */
.posts-section .post-card[b-fouq79q5gr] {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 1rem;
    background-color: #fff; /* Ensure post cards have a distinct background if details column is also light */
}

@media (max-width: 992px) {
    .agent-overview-container[b-fouq79q5gr] {
        flex-direction: column;
        height: auto; /* Allow page to grow on mobile */
    }

    .agent-list-column[b-fouq79q5gr] {
        flex: 0 0 auto; /* Allow it to take its content height */
        max-height: 40vh; /* Limit height on mobile, rest will be scrollable */
        margin-bottom: 20px;
    }

    .agent-details-column[b-fouq79q5gr] {
        flex: 1;
    }
}
/* _content/Yapnomics.Combined/Components/Pages/AssetDetails.razor.rz.scp.css */
/* Basic styling for AssetDetails page - add to your global or component CSS */
.asset-details-page-light[b-j1jpipoqa6] {
    background-color: #f8f9fa; /* Light background for the page */
    padding: 20px;
    color: #212529;
    border: 1px solid black;
    border-radius: 8px;
}

.asset-detail-layout-container[b-j1jpipoqa6] {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px;
}

.asset-main-content[b-j1jpipoqa6] {
    flex: 3; /* Takes up more space */
    min-width: 300px; /* Ensure it doesn't get too squished */
}

.asset-actions-sidebar[b-j1jpipoqa6] {
    flex: 1; /* Takes up less space */
    min-width: 250px; /* Minimum width for the sidebar */
}

.asset-title-header .asset-icon-placeholder-large[b-j1jpipoqa6] {
    font-size: 2.5rem; /* Larger icon */
    background-color: #e9ecef;
    color: #495057;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.asset-title-header .asset-name[b-j1jpipoqa6] {
    font-weight: 600;
}

.asset-price-info .current-price[b-j1jpipoqa6] {
    font-weight: 700;
    color: #000; /* Black price as in image */
}

.asset-price-info .price-currency[b-j1jpipoqa6] {
    font-size: 1.5rem; /* Smaller than price, but still prominent */
    color: #495057;
}

.asset-price-info .text-success[b-j1jpipoqa6] {
    color: #198754 !important; /* Bootstrap success green */
}

.asset-price-info .text-danger[b-j1jpipoqa6] {
    color: #dc3545 !important; /* Bootstrap danger red */
}

.timeframe-selectors .rz-button[b-j1jpipoqa6] {
    margin-right: 5px;
    /* Style Radzen buttons to look like the image's selectors if needed */
}

.chart-container-styles[b-j1jpipoqa6] {
    width: 100%;
    height: calc(100vh - 400px); /* Fill vertical space, accounting for header and other elements */
    min-height: 400px; /* Minimum height for mobile */
    max-height: 800px; /* Maximum height for very large screens */
    border: 1px solid #dee2e6;
    background-color: #fff; /* White background for the chart area itself */
    border-radius: 8px;
    overflow: hidden; /* Prevent chart from overflowing container */
    position: relative; /* For proper positioning of chart elements */
}

/* Responsive adjustments for chart */
@media (max-width: 768px) {
    .chart-container-styles[b-j1jpipoqa6] {
        height: calc(100vh - 500px); /* Adjust for mobile layout */
        min-height: 300px;
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .chart-container-styles[b-j1jpipoqa6] {
        height: calc(100vh - 600px); /* Further adjust for small screens */
        min-height: 250px;
        max-height: 400px;
    }
}

.empty-chart-state[b-j1jpipoqa6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px; /* Match chart height */
    border: 1px dashed #ced4da;
    background-color: #f8f9fa;
    color: #6c757d;
    border-radius: .25rem;
}

.loading-container-light[b-j1jpipoqa6] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 400px; /* Give loading some height */
}

    .loading-container-light .spinner-light[b-j1jpipoqa6] { /* Basic spinner if not using Radzen's */
        border: 4px solid rgba(0,0,0,.1);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border-left-color: #0d6efd; /* Bootstrap primary blue */
        animation: spin-b-j1jpipoqa6 1s linear infinite;
    }

@keyframes spin-b-j1jpipoqa6 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.historical-data-list-preview p[b-j1jpipoqa6] {
    font-size: 0.85em;
    margin: 2px 0;
    border-bottom: 1px dotted #e0e0e0;
    padding-bottom: 2px;
    word-break: break-all;
}

.page-footer-info[b-j1jpipoqa6] {
    font-size: 0.8rem;
}

/* Trading interface styles */
.asset-actions-sidebar .card[b-j1jpipoqa6] {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

.asset-actions-sidebar .card:hover[b-j1jpipoqa6] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.asset-actions-sidebar .card-title[b-j1jpipoqa6] {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

/* Account info styling */
.asset-actions-sidebar .text-success[b-j1jpipoqa6] {
    color: #38a169 !important;
    font-weight: 700;
}

/* Position P&L styling */
.asset-actions-sidebar .text-danger[b-j1jpipoqa6] {
    color: #e53e3e !important;
}

/* Trading form enhancements */
.rz-numeric[b-j1jpipoqa6] {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rz-numeric:focus[b-j1jpipoqa6] {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Trade button styling */
.asset-actions-sidebar .rz-button[b-j1jpipoqa6] {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.asset-actions-sidebar .rz-button:not(:disabled):hover[b-j1jpipoqa6] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.asset-actions-sidebar .rz-button:disabled[b-j1jpipoqa6] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert styling */
.alert[b-j1jpipoqa6] {
    border-radius: 8px;
    border: none;
    font-size: 0.875rem;
}

.alert-info[b-j1jpipoqa6] {
    background-color: #bee3f8;
    color: #2c5282;
}

.alert-warning[b-j1jpipoqa6] {
    background-color: #faf089;
    color: #744210;
}

.alert-danger[b-j1jpipoqa6] {
    background-color: #fed7d7;
    color: #9b2c2c;
}

/* Price display enhancements */
.current-price[b-j1jpipoqa6] {
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.025em;
}

/* Trade mode toggle styling */
.trade-mode-toggle[b-j1jpipoqa6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Compact trade mode toggle for quantity row */
.trade-mode-toggle-compact[b-j1jpipoqa6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 0.8rem;
}

.trade-toggle[b-j1jpipoqa6] {
    margin: 0;
}

.trade-mode-label[b-j1jpipoqa6] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.trade-mode-label.active[b-j1jpipoqa6] {
    color: #495057;
    font-weight: 600;
}

.trade-mode-label i[b-j1jpipoqa6] {
    font-size: 0.75rem;
}

/* Max button styling */
.max-btn[b-j1jpipoqa6] {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Quantity slider styling */
.quantity-slider[b-j1jpipoqa6] {
    margin: 0.5rem 0;
}

.quantity-slider .rz-slider-track[b-j1jpipoqa6] {
    background-color: #e9ecef;
    height: 6px;
    border-radius: 3px;
}

.quantity-slider .rz-slider-range[b-j1jpipoqa6] {
    background: linear-gradient(90deg, #38a169 0%, #4299e1 100%);
    height: 6px;
    border-radius: 3px;
}

.quantity-slider .rz-slider-handle[b-j1jpipoqa6] {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 3px solid #4299e1;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-slider .rz-slider-handle:hover[b-j1jpipoqa6] {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Trade summary styling */
.trade-summary[b-j1jpipoqa6] {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

/* Slider section within trade summary */
.slider-section[b-j1jpipoqa6] {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

/* Execute trade button */
.execute-trade-btn[b-j1jpipoqa6] {
    font-weight: 600;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all 0.2s ease;
}

.execute-trade-btn:not(:disabled):hover[b-j1jpipoqa6] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.execute-trade-btn:disabled[b-j1jpipoqa6] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Enhanced numeric input styling */
.rz-numeric input[b-j1jpipoqa6] {
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.rz-numeric .rz-spinner-button[b-j1jpipoqa6] {
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.rz-numeric .rz-spinner-button:hover[b-j1jpipoqa6] {
    background-color: #e9ecef;
}

/* Mobile responsiveness for sidebar */
@media (max-width: 768px) {
    .asset-actions-sidebar[b-j1jpipoqa6] {
        position: static !important;
        margin-top: 2rem;
    }
    
    .asset-detail-layout-container[b-j1jpipoqa6] {
        flex-direction: column;
    }
    
    .asset-main-content[b-j1jpipoqa6] {
        order: 1;
    }
    
    .col-lg-4.col-md-5[b-j1jpipoqa6] {
        order: 2;
    }
    
    .trade-mode-toggle[b-j1jpipoqa6] {
        justify-content: center;
    }
    
    .execute-trade-btn[b-j1jpipoqa6] {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
}
/* _content/Yapnomics.Combined/Components/Pages/Home.razor.rz.scp.css */
.dashboard-container[b-k2h6kmaov8] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.dashboard-row[b-k2h6kmaov8] {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.dashboard-col[b-k2h6kmaov8] {
    flex: 1 0 0%;
    padding: 0.5rem;
    min-width: 300px;
}

@media (max-width: 768px) {
    .dashboard-col[b-k2h6kmaov8] {
        flex: 0 0 100%;
    }
}

.market-summary-card[b-k2h6kmaov8], .quick-nav-card[b-k2h6kmaov8] {
    background-color: #f0f0f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
    border: 1px solid black;
}

.market-summary-card h2[b-k2h6kmaov8], .quick-nav-card h2[b-k2h6kmaov8] {
    color: black;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.market-stats[b-k2h6kmaov8] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item[b-k2h6kmaov8] {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    background-color: f0f0f0;
    border-radius: 0.25rem;
}

.stat-label[b-k2h6kmaov8] {
    font-size: 0.85rem;
    color: black;
    margin-bottom: 0.25rem;
}

.stat-value[b-k2h6kmaov8] {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
}

.nav-buttons[b-k2h6kmaov8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.nav-button[b-k2h6kmaov8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #1e1e1e;
    border: none;
    border-radius: 0.25rem;
    color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.nav-button:hover[b-k2h6kmaov8] {
    background-color: #2a2a2a;
}

.nav-button:active[b-k2h6kmaov8] {
    transform: scale(0.98);
}

.nav-button i[b-k2h6kmaov8] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1da1f2;
}

.nav-button span[b-k2h6kmaov8] {
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .nav-buttons[b-k2h6kmaov8] {
        grid-template-columns: 1fr;
    }
}
/* _content/Yapnomics.Combined/Components/Pages/Markets.razor.rz.scp.css */
.markets-container-light[b-c9qq282rhw] {
    color: #212529;
    background-color: #f8f9fa;
    padding: 20px;
    border: 1px solid black;
    border-radius: 8px;
}

.markets-header-light[b-c9qq282rhw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 15px;
}

    .markets-header-light h1[b-c9qq282rhw] {
        font-size: 24px;
        color: #343a40;
        margin: 0;
    }

.top-sections-placeholder-light[b-c9qq282rhw] {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.top-section-light[b-c9qq282rhw] {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c9cccf;
    flex-grow: 1;
    min-width: 200px;
}

    .top-section-light h4[b-c9qq282rhw] {
        font-size: 16px;
        color: #343a40;
        margin-top: 0;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
    }

        .top-section-light h4 a[b-c9qq282rhw] {
            font-size: 12px;
            color: #6c757d;
            text-decoration: none;
        }

.coin-item-light[b-c9qq282rhw] {
    font-size: 14px;
    margin-bottom: 5px;
    color: #495057;
    overflow: auto;
    line-height: 1.5;
}

.coin-info-left[b-c9qq282rhw] {
    float: left;
    display: flex;
    align-items: center;
}

.coin-symbol-name[b-c9qq282rhw] {
    font-weight: bold;
    color: #212529;
    margin-right: 8px;
}

.coin-price-value[b-c9qq282rhw] {
    /* Styles for price if needed, e.g., color or spacing */
}

.coin-percentage-right[b-c9qq282rhw] { 
    float: right;
    text-align: right;
}


.market-table-container-light h3[b-c9qq282rhw] {
    font-size: 20px;
    margin-bottom: 10px;
    color: #343a40;
}

.asset-name-cell-light.rz-cell-data[b-c9qq282rhw] {
    display: flex;
    align-items: center;
}

.asset-icon-placeholder-light[b-c9qq282rhw] {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    color: #333;
    font-size: 12px;
}

.asset-symbol-light[b-c9qq282rhw] {
    font-weight: bold;
    margin-right: 8px;
    color: #212529;
}

.asset-fullname-light[b-c9qq282rhw] {
    font-size: 0.9em;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.positive[b-c9qq282rhw] {
    color: #28a745;
}

.negative[b-c9qq282rhw] {
    color: #dc3545;
}

.action-icon-button-light.rz-button.rz-button-icon-only[b-c9qq282rhw] {
    margin-left: 4px;
    margin-right: 4px;
    color: #6c757d;
}

    .action-icon-button-light.rz-button.rz-button-icon-only:hover[b-c9qq282rhw] {
        color: #007bff;
        background-color: #e9ecef;
    }

.loading-container-light[b-c9qq282rhw], .empty-state-light[b-c9qq282rhw] {
    text-align: center;
    padding: 50px;
    color: #6c757d;
}

.spinner-light[b-c9qq282rhw] {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #007bff;
    width: 40px;
    height: 40px;
    animation: spin-b-c9qq282rhw 1s linear infinite;
    margin: 0 auto 20px auto;
}


@keyframes spin-b-c9qq282rhw {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.empty-state-light i[b-c9qq282rhw] {
    font-size: 48px;
    margin-bottom: 15px;
}

[b-c9qq282rhw] .rz-grid-table tbody .rz-data-row:hover > td {
    background-color: #ededed !important; 
}

[b-c9qq282rhw] .rz-data-row {
    cursor: pointer;
}
/* _content/Yapnomics.Combined/Components/Pages/Newsfeed.razor.rz.scp.css */
.newsfeed-container[b-88rsjnhonl] {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 0.5rem;
    border: 1px solid black;
}

.feed-header[b-88rsjnhonl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #fafafa;
    border-bottom: 1px solid #e9ecef;
    border-radius: 0.5rem 0.5rem 0 0;
}

.feed-header h2[b-88rsjnhonl] {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.feed-header h2 i[b-88rsjnhonl] {
    margin-right: 0.5rem;
}

.refresh-button[b-88rsjnhonl] {
    background: transparent;
    border: none;
    color: #1da1f2;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: background-color 0.2s;
}

.refresh-button:hover[b-88rsjnhonl] {
    background-color: rgba(29, 161, 242, 0.1);
}

.new-posts-button[b-88rsjnhonl] {
    display: flex;
    align-items: center;
    background-color: #1da1f2;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-right: 0.5rem;
}

.new-posts-button:hover[b-88rsjnhonl] {
    background-color: #1a91da;
}

.new-posts-button i[b-88rsjnhonl] {
    margin-right: 0.5rem;
}

.loading-container[b-88rsjnhonl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: #8899a6;
}

.spinner[b-88rsjnhonl] {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid #1da1f2;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin-b-88rsjnhonl 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-88rsjnhonl {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-state[b-88rsjnhonl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: #8899a6;
}

.empty-state i[b-88rsjnhonl] {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.empty-state p[b-88rsjnhonl] {
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .newsfeed-container[b-88rsjnhonl] {
        width: 100%;
    }
}
/* _content/Yapnomics.Combined/Components/Pages/Portfolio.razor.rz.scp.css */
.portfolio-page-container[b-xyqkk9monb] {
    padding: 20px;
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid black;
    border-radius: 8px;
    max-width: 1200px;
    margin: 20px auto;
}

.portfolio-header[b-xyqkk9monb] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ced4da;
    padding-bottom: 1rem;
}

    .portfolio-header h1[b-xyqkk9monb] {
        font-weight: 600;
        color: #343a40;
        font-size: 2rem;
    }

.player-avatar-placeholder[b-xyqkk9monb] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.portfolio-summary-card[b-xyqkk9monb] {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

    .portfolio-summary-card .display-5[b-xyqkk9monb] {
        color: #28a745;
    }

.portfolio-stats[b-xyqkk9monb], .player-stats[b-xyqkk9monb] {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.player-stats[b-xyqkk9monb] {
    justify-content: flex-start;
    margin-top: 1rem;
}

@media (max-width: 767px) {
    .portfolio-stats[b-xyqkk9monb], .player-stats[b-xyqkk9monb] {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}


.stat-item[b-xyqkk9monb] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-label[b-xyqkk9monb] {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.stat-value[b-xyqkk9monb] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #343a40;
}

[b-xyqkk9monb] .rz-grid-table {
    border-radius: 4px;
}

    [b-xyqkk9monb] .rz-grid-table th {
        background-color: #e9ecef;
        color: #495057;
        font-weight: 600;
        border-bottom: 2px solid #dee2e6;
    }

[b-xyqkk9monb] .rz-data-row {
    cursor: pointer;
}

    [b-xyqkk9monb] .rz-data-row:hover > td {
        background-color: #f1f3f5 !important;
    }

.loading-container-light[b-xyqkk9monb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    color: #6c757d;
}

.fw-bold[b-xyqkk9monb] {
    font-weight: 600 !important;
}

.text-primary[b-xyqkk9monb] {
    color: #007bff !important;
}

.text-success[b-xyqkk9monb] {
    color: #28a745 !important;
}

.text-danger[b-xyqkk9monb] {
    color: #dc3545 !important;
}
