/* _content/LomGroupBilling/Components/Pages/Admin.razor.rz.scp.css */
    .admin-container[b-yc1lgq2swx] {
        max-width: 1400px;
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .admin-header[b-yc1lgq2swx] {
        margin-bottom: 2rem;
    }

    .admin-header h1[b-yc1lgq2swx] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .admin-header h1 svg[b-yc1lgq2swx] {
        color: var(--accent-primary);
    }

    .admin-header p[b-yc1lgq2swx] {
        color: var(--text-secondary);
        font-size: 1rem;
    }

    .stats-grid[b-yc1lgq2swx] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-card[b-yc1lgq2swx] {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .stat-card:hover[b-yc1lgq2swx] {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .stat-icon[b-yc1lgq2swx] {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-icon.users[b-yc1lgq2swx] { background: linear-gradient(135deg, #3C3C3C 0%, #555555 100%); color: white; }
    .stat-icon.subscriptions[b-yc1lgq2swx] { background: linear-gradient(135deg, #8DC63F 0%, #6BA32B 100%); color: white; }
    .stat-icon.licenses[b-yc1lgq2swx] { background: linear-gradient(135deg, #5A5A5A 0%, #3C3C3C 100%); color: white; }
    .stat-icon.downloads[b-yc1lgq2swx] { background: linear-gradient(135deg, #8DC63F 0%, #6BA32B 100%); color: white; }

    .stat-value[b-yc1lgq2swx] {
        font-size: 2rem;
        font-weight: bold;
        color: var(--text-primary);
    }

    .stat-label[b-yc1lgq2swx] {
        color: var(--text-secondary);
        font-size: 0.875rem;
    }

    .admin-tabs[b-yc1lgq2swx] {
        display: flex;
        gap: 0.5rem;
        border-bottom: 2px solid var(--border-color);
        margin-bottom: 2rem;
        overflow-x: auto;
    }

    .tab-btn[b-yc1lgq2swx] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        background: none;
        border: none;
        border-bottom: 3px solid transparent;
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .tab-btn:hover[b-yc1lgq2swx] {
        color: var(--accent-primary);
        background: var(--hover-bg);
    }

    .tab-btn.active[b-yc1lgq2swx] {
        color: var(--accent-primary);
        border-bottom-color: var(--accent-primary);
        font-weight: 600;
    }

    .admin-table[b-yc1lgq2swx] {
        width: 100%;
        border-collapse: collapse;
        background: var(--card-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .admin-table thead[b-yc1lgq2swx] {
        background: var(--bg-tertiary);
    }

    .admin-table th[b-yc1lgq2swx] {
        padding: 1rem;
        text-align: left;
        font-weight: 600;
        color: var(--text-primary);
        border-bottom: 2px solid var(--border-color);
    }

    .admin-table td[b-yc1lgq2swx] {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-secondary);
    }

    .admin-table tbody tr:hover[b-yc1lgq2swx] {
        background: var(--hover-bg);
    }

    .admin-table code[b-yc1lgq2swx] {
        background: var(--bg-tertiary);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.875rem;
        font-family: 'Courier New', monospace;
    }

    .badge[b-yc1lgq2swx] {
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .badge-success[b-yc1lgq2swx] { background: #d4edda; color: #155724; }
    .badge-danger[b-yc1lgq2swx] { background: #f8d7da; color: #721c24; }
    .badge-warning[b-yc1lgq2swx] { background: #fff3cd; color: #856404; }
    .badge-info[b-yc1lgq2swx] { background: #d1ecf1; color: #0c5460; }

    .btn-sm[b-yc1lgq2swx] {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-info[b-yc1lgq2swx] { background: #17a2b8; color: white; }
    .btn-info:hover[b-yc1lgq2swx] { background: #138496; }
    .btn-danger[b-yc1lgq2swx] { background: #dc3545; color: white; }
    .btn-danger:hover[b-yc1lgq2swx] { background: #c82333; }
    .btn-success[b-yc1lgq2swx] { background: #28a745; color: white; }
    .btn-success:hover[b-yc1lgq2swx] { background: #218838; }

    .stats-grid-detailed[b-yc1lgq2swx] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
    }

    .stat-detail-card[b-yc1lgq2swx] {
        background: var(--card-bg);
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }

    .stat-detail-card h3[b-yc1lgq2swx] {
        margin-bottom: 1rem;
        color: var(--text-primary);
    }

    .stats-table[b-yc1lgq2swx] {
        width: 100%;
        border-collapse: collapse;
    }

    .stats-table th[b-yc1lgq2swx],
    .stats-table td[b-yc1lgq2swx] {
        padding: 0.75rem;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }

    .stats-table th[b-yc1lgq2swx] {
        font-weight: 600;
        color: var(--text-primary);
    }

    .stats-table td[b-yc1lgq2swx] {
        color: var(--text-secondary);
    }

    html.dark .admin-table[b-yc1lgq2swx],
    html.dark .stat-card[b-yc1lgq2swx],
    html.dark .stat-detail-card[b-yc1lgq2swx] {
        background: #1e1e1e;
    }

    html.dark .badge-success[b-yc1lgq2swx] { background: #1e4620; color: #7ed37f; }
    html.dark .badge-danger[b-yc1lgq2swx] { background: #5a1a1a; color: #f87171; }
    html.dark .badge-warning[b-yc1lgq2swx] { background: #5a4a1a; color: #fbbf24; }
    html.dark .badge-info[b-yc1lgq2swx] { background: #1a3a4a; color: #60a5fa; }

    /* User Details Modal Styles */
    .modal-overlay[b-yc1lgq2swx] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 1rem;
    }

    .user-details-modal[b-yc1lgq2swx] {
        background: var(--card-bg);
        border-radius: 16px;
        max-width: 900px;
        width: 100%;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .modal-header[b-yc1lgq2swx] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }

    .modal-header h2[b-yc1lgq2swx] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 0;
        color: var(--text-primary);
        font-size: 1.5rem;
    }

    .modal-header h2 svg[b-yc1lgq2swx] {
        color: var(--accent-primary);
    }

    .close-btn[b-yc1lgq2swx] {
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
        color: var(--text-secondary);
        border-radius: 8px;
        transition: all 0.2s;
    }

    .close-btn:hover[b-yc1lgq2swx] {
        background: var(--border-color);
        color: var(--text-primary);
    }

    .modal-body[b-yc1lgq2swx] {
        flex: 1;
        overflow-y: auto;
        padding: 1.5rem;
    }

    .user-info-section[b-yc1lgq2swx],
    .user-subscriptions-section[b-yc1lgq2swx],
    .user-licenses-section[b-yc1lgq2swx] {
        margin-bottom: 2rem;
    }

    .user-info-section h3[b-yc1lgq2swx],
    .user-subscriptions-section h3[b-yc1lgq2swx],
    .user-licenses-section h3[b-yc1lgq2swx] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        color: var(--text-primary);
        font-size: 1.25rem;
    }

    .user-subscriptions-section h3 svg[b-yc1lgq2swx],
    .user-licenses-section h3 svg[b-yc1lgq2swx] {
        color: var(--accent-primary);
    }

    .info-grid[b-yc1lgq2swx] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .info-item[b-yc1lgq2swx] {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .info-item label[b-yc1lgq2swx] {
        font-size: 0.875rem;
        color: var(--text-secondary);
        font-weight: 500;
    }

    .info-item span[b-yc1lgq2swx] {
        color: var(--text-primary);
        font-size: 1rem;
    }

    .subscriptions-list[b-yc1lgq2swx],
    .licenses-list[b-yc1lgq2swx] {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .subscription-card[b-yc1lgq2swx],
    .license-card[b-yc1lgq2swx] {
        padding: 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: var(--bg-primary);
    }

    .sub-header[b-yc1lgq2swx],
    .license-header[b-yc1lgq2swx] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.75rem;
    }

    .sub-details[b-yc1lgq2swx],
    .license-details[b-yc1lgq2swx] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.5rem;
        font-size: 0.875rem;
        color: var(--text-secondary);
    }

    .sub-details small[b-yc1lgq2swx],
    .license-details small[b-yc1lgq2swx] {
        color: var(--text-secondary);
        opacity: 0.7;
    }

    .sub-details code[b-yc1lgq2swx],
    .license-details code[b-yc1lgq2swx] {
        font-size: 0.75rem;
        padding: 0.125rem 0.25rem;
        background: var(--border-color);
        border-radius: 4px;
    }

    .empty-state[b-yc1lgq2swx] {
        text-align: center;
        padding: 2rem;
        color: var(--text-secondary);
        font-style: italic;
    }

    .modal-footer[b-yc1lgq2swx] {
        padding: 1.5rem;
        border-top: 1px solid var(--border-color);
        display: flex;
        justify-content: flex-end;
    }

    html.dark .user-details-modal[b-yc1lgq2swx],
    html.dark .subscription-details-modal[b-yc1lgq2swx] {
        background: #1e1e1e;
    }

    html.dark .subscription-card[b-yc1lgq2swx],
    html.dark .license-card[b-yc1lgq2swx] {
        background: #141414;
    }

    /* Subscription Details Modal Specific Styles */
    .subscription-details-modal[b-yc1lgq2swx] {
        max-width: 900px;
    }

    .subscription-info-section[b-yc1lgq2swx],
    .stripe-info-section[b-yc1lgq2swx],
    .related-licenses-section[b-yc1lgq2swx],
    .customer-info-section[b-yc1lgq2swx] {
        margin-bottom: 2rem;
    }

    .subscription-info-section h3[b-yc1lgq2swx],
    .stripe-info-section h3[b-yc1lgq2swx],
    .related-licenses-section h3[b-yc1lgq2swx],
    .customer-info-section h3[b-yc1lgq2swx] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        color: var(--text-primary);
        font-size: 1.25rem;
    }

    .stripe-info-section h3 svg[b-yc1lgq2swx],
    .related-licenses-section h3 svg[b-yc1lgq2swx],
    .customer-info-section h3 svg[b-yc1lgq2swx] {
        color: var(--accent-primary);
    }

    .stripe-details[b-yc1lgq2swx] {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        background: var(--bg-primary);
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }

    .stripe-item[b-yc1lgq2swx] {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .stripe-item label[b-yc1lgq2swx] {
        font-size: 0.875rem;
        color: var(--text-secondary);
        font-weight: 500;
    }

    .stripe-item code[b-yc1lgq2swx] {
        font-size: 0.875rem;
        padding: 0.5rem;
        background: var(--border-color);
        border-radius: 4px;
        font-family: 'Courier New', monospace;
    }

    html.dark .stripe-details[b-yc1lgq2swx] {
        background: #141414;
    }

    /* Keycloak Users Banner */
    .keycloak-users-banner[b-yc1lgq2swx] {
        margin-bottom: 1.5rem;
    }

    .keycloak-link[b-yc1lgq2swx] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, #8DC63F 0%, #6BA32B 100%);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .keycloak-link:hover[b-yc1lgq2swx] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(141, 198, 63, 0.3);
    }

    .keycloak-link span[b-yc1lgq2swx] {
        flex: 1;
    }
</style[b-yc1lgq2swx]>
/* _content/LomGroupBilling/Components/Pages/AdminPlugins.razor.rz.scp.css */
/* ───────────────────────────────────────────────────────────────
   AdminPlugins.razor.css — Scoped styles for the plugin manager
   Mirrors the Admin / AdminLicenses aesthetic:
   dark-friendly cards, green/grey accents, consistent typography.
─────────────────────────────────────────────────────────────── */

.admin-container[b-ob5no2le37] {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* ── Header ─────────────────────────────────────────────────── */

.admin-header[b-ob5no2le37] {
    margin-bottom: 2rem;
}

.header-left[b-ob5no2le37] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.back-link[b-ob5no2le37] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.back-link:hover[b-ob5no2le37] {
    color: var(--accent-primary);
}

.admin-header h1[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    margin: 0 0 0.5rem;
    color: var(--text-primary);
}

.admin-header h1 svg[b-ob5no2le37] {
    color: var(--accent-primary);
}

.admin-header p[b-ob5no2le37] {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* ── Stats grid (shared pattern) ────────────────────────────── */

.stats-grid[b-ob5no2le37] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover[b-ob5no2le37] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-icon[b-ob5no2le37] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.users[b-ob5no2le37]        { background: linear-gradient(135deg, #3C3C3C 0%, #555555 100%); color: white; }
.stat-icon.subscriptions[b-ob5no2le37] { background: linear-gradient(135deg, #8DC63F 0%, #6BA32B 100%); color: white; }
.stat-icon.licenses[b-ob5no2le37]     { background: linear-gradient(135deg, #5A5A5A 0%, #3C3C3C 100%); color: white; }
.stat-icon.downloads[b-ob5no2le37]    { background: linear-gradient(135deg, #8DC63F 0%, #6BA32B 100%); color: white; }

.stat-value[b-ob5no2le37] {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.stat-label[b-ob5no2le37] {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ── Toast notification ─────────────────────────────────────── */

.toast[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideIn-b-ob5no2le37 0.3s ease;
}

.toast-success[b-ob5no2le37] {
    background: linear-gradient(135deg, #8DC63F 0%, #6BA32B 100%);
    color: white;
}

.toast-error[b-ob5no2le37] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

@keyframes slideIn-b-ob5no2le37 {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Loading / empty states ─────────────────────────────────── */

.loading-state[b-ob5no2le37],
.empty-state[b-ob5no2le37] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    text-align: center;
}

.spinner[b-ob5no2le37] {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin-b-ob5no2le37 0.8s linear infinite;
}

@keyframes spin-b-ob5no2le37 {
    to { transform: rotate(360deg); }
}

.spinner-small[b-ob5no2le37] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-ob5no2le37 0.8s linear infinite;
}

/* ── Plugin cards grid ──────────────────────────────────────── */

.plugins-grid[b-ob5no2le37] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 1.5rem;
}

.plugin-card[b-ob5no2le37] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.plugin-card:hover[b-ob5no2le37] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.plugin-card.has-installer[b-ob5no2le37] {
    border-top: 3px solid #8DC63F;
}

.plugin-card.no-installer[b-ob5no2le37] {
    border-top: 3px solid var(--border-color);
}

/* ── Card header ────────────────────────────────────────────── */

.plugin-card-header[b-ob5no2le37] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.plugin-info[b-ob5no2le37] {
    flex: 1;
    min-width: 0;
}

.plugin-name-row[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.plugin-name-row h3[b-ob5no2le37] {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.category-badge[b-ob5no2le37] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.category-revit-plugin[b-ob5no2le37] { background: #1e3a5a; color: #60a5fa; }
.category-utility[b-ob5no2le37]      { background: #2d2a3e; color: #a78bfa; }

html:not(.dark) .category-revit-plugin[b-ob5no2le37] { background: #dbeafe; color: #1d4ed8; }
html:not(.dark) .category-utility[b-ob5no2le37]      { background: #ede9fe; color: #6d28d9; }

.plugin-meta[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-item[b-ob5no2le37] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ── Installer status badge ─────────────────────────────────── */

.installer-status[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-ok[b-ob5no2le37] {
    background: #1e4620;
    color: #7ed37f;
}

.status-missing[b-ob5no2le37] {
    background: #3a2a2a;
    color: #f87171;
}

html:not(.dark) .status-ok[b-ob5no2le37]      { background: #d4edda; color: #155724; }
html:not(.dark) .status-missing[b-ob5no2le37] { background: #f8d7da; color: #721c24; }

/* ── Installer details (current) ────────────────────────────── */

.installer-details[b-ob5no2le37] {
    padding: 1rem 1.5rem;
    background: var(--bg-primary, #f9f9f9);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

html.dark .installer-details[b-ob5no2le37] {
    background: #141414;
}

.detail-row[b-ob5no2le37] {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.detail-label[b-ob5no2le37] {
    min-width: 70px;
    color: var(--text-secondary);
    font-weight: 500;
    flex-shrink: 0;
}

.detail-value[b-ob5no2le37] {
    color: var(--text-primary);
}

.detail-value code[b-ob5no2le37] {
    background: var(--border-color);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

.detail-changelog .detail-value[b-ob5no2le37] {
    color: var(--text-secondary);
    white-space: pre-line;
}

.changelog-text[b-ob5no2le37] {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ── Upload section ─────────────────────────────────────────── */

.upload-section[b-ob5no2le37] {
    padding: 1.25rem 1.5rem;
}

.upload-section h4[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.upload-section h4 svg[b-ob5no2le37] {
    color: var(--accent-primary);
}

/* ── Form elements ──────────────────────────────────────────── */

.form-row[b-ob5no2le37] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-group[b-ob5no2le37] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.form-group label[b-ob5no2le37] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.required[b-ob5no2le37] {
    color: #f87171;
}

.form-input[b-ob5no2le37],
.form-textarea[b-ob5no2le37] {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus[b-ob5no2le37],
.form-textarea:focus[b-ob5no2le37] {
    outline: none;
    border-color: var(--accent-primary);
}

html.dark .form-input[b-ob5no2le37],
html.dark .form-textarea[b-ob5no2le37] {
    background: #1a1a1a;
}

.form-textarea[b-ob5no2le37] {
    resize: vertical;
    font-family: inherit;
}

/* ── File input ─────────────────────────────────────────────── */

.file-input[b-ob5no2le37] {
    display: block;
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: var(--bg-primary);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.file-input:hover[b-ob5no2le37] {
    border-color: var(--accent-primary);
}

.file-name[b-ob5no2le37] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #8DC63F;
    word-break: break-all;
}

/* ── Progress bar ───────────────────────────────────────────── */

.progress-bar-wrap[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.progress-bar-track[b-ob5no2le37] {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill[b-ob5no2le37] {
    height: 100%;
    background: linear-gradient(90deg, #8DC63F, #6BA32B);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-label[b-ob5no2le37] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ── Inline error ───────────────────────────────────────────── */

.inline-error[b-ob5no2le37] {
    padding: 0.6rem 0.9rem;
    background: #5a1a1a;
    color: #f87171;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

html:not(.dark) .inline-error[b-ob5no2le37] {
    background: #f8d7da;
    color: #721c24;
}

/* ── Card actions ───────────────────────────────────────────── */

.card-actions[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.btn-upload[b-ob5no2le37] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #8DC63F 0%, #6BA32B 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-upload:hover:not(:disabled)[b-ob5no2le37] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(141, 198, 63, 0.35);
}

.btn-upload:disabled[b-ob5no2le37] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-delete[b-ob5no2le37] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: transparent;
    color: #f87171;
    border: 1px solid #f87171;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-delete:hover[b-ob5no2le37] {
    background: #5a1a1a;
}

html:not(.dark) .btn-delete:hover[b-ob5no2le37] {
    background: #f8d7da;
}

/* ── Confirm delete inline ──────────────────────────────────── */

.confirm-delete[b-ob5no2le37] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.btn-danger-sm[b-ob5no2le37] {
    padding: 0.35rem 0.75rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-danger-sm:hover[b-ob5no2le37] {
    background: #c82333;
}

.btn-cancel-sm[b-ob5no2le37] {
    padding: 0.35rem 0.75rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel-sm:hover[b-ob5no2le37] {
    background: var(--hover-bg);
    color: var(--text-primary);
}

/* ── Dark mode card bg ──────────────────────────────────────── */

html.dark .plugin-card[b-ob5no2le37],
html.dark .stat-card[b-ob5no2le37] {
    background: #1e1e1e;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 600px) {
    .plugins-grid[b-ob5no2le37] {
        grid-template-columns: 1fr;
    }

    .plugin-card-header[b-ob5no2le37] {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-actions[b-ob5no2le37] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-upload[b-ob5no2le37],
    .btn-delete[b-ob5no2le37] {
        justify-content: center;
    }
}
/* _content/LomGroupBilling/Components/Pages/AdminUsers.razor.rz.scp.css */
    /* ─── Layout ──────────────────────────────────────────────────── */
    .admin-container[b-jwatsn9ylz] {
        max-width: 1400px;
        margin: 2rem auto;
        padding: 0 1.5rem;
    }

    .admin-header[b-jwatsn9ylz] {
        margin-bottom: 1.5rem;
    }

    .back-link[b-jwatsn9ylz] {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        transition: color 0.2s;
    }

    .back-link:hover[b-jwatsn9ylz] {
        color: var(--accent-primary);
    }

    .admin-header h1[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.75rem;
        color: var(--text-primary);
        margin: 0 0 0.25rem 0;
    }

    .admin-header h1 svg[b-jwatsn9ylz] {
        color: var(--accent-primary);
    }

    .admin-header p[b-jwatsn9ylz] {
        color: var(--text-secondary);
        margin: 0;
    }

    /* ─── Toolbar ─────────────────────────────────────────────────── */
    .toolbar[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .search-box[b-jwatsn9ylz] {
        flex: 1;
        min-width: 280px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 0.625rem 1rem;
        transition: border-color 0.2s;
    }

    .search-box:focus-within[b-jwatsn9ylz] {
        border-color: var(--accent-primary);
    }

    .search-box svg[b-jwatsn9ylz] {
        color: var(--text-secondary);
        flex-shrink: 0;
    }

    .search-input[b-jwatsn9ylz] {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        color: var(--text-primary);
        font-size: 0.95rem;
    }

    .clear-search[b-jwatsn9ylz] {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text-secondary);
        padding: 0.25rem;
        border-radius: 4px;
        display: flex;
        align-items: center;
    }

    .clear-search:hover[b-jwatsn9ylz] {
        color: var(--text-primary);
    }

    .btn-refresh[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.625rem 1.25rem;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        color: var(--text-primary);
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.2s;
    }

    .btn-refresh:hover:not(:disabled)[b-jwatsn9ylz] {
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }

    .btn-refresh:disabled[b-jwatsn9ylz] {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .btn-refresh.loading svg[b-jwatsn9ylz] {
        animation: spin 1s linear infinite;
    }

    @@keyframes spin {
        to[b-jwatsn9ylz] { transform: rotate(360deg); }
    }

    /* ─── Alerts ──────────────────────────────────────────────────── */
    .alert[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1.25rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .alert-error[b-jwatsn9ylz] {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.3);
        color: #dc3545;
    }

    .alert-success[b-jwatsn9ylz] {
        background: rgba(40, 167, 69, 0.1);
        border: 1px solid rgba(40, 167, 69, 0.3);
        color: #28a745;
    }

    html.dark .alert-success[b-jwatsn9ylz] { color: #7ed37f; }
    html.dark .alert-error[b-jwatsn9ylz] { color: #f87171; }

    .close-alert[b-jwatsn9ylz] {
        margin-left: auto;
        background: none;
        border: none;
        cursor: pointer;
        color: inherit;
        opacity: 0.7;
        font-size: 1rem;
        padding: 0.25rem;
    }

    /* ─── Table Card ──────────────────────────────────────────────── */
    .table-card[b-jwatsn9ylz] {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        overflow: hidden;
    }

    .table-wrapper[b-jwatsn9ylz] {
        overflow-x: auto;
    }

    .users-table[b-jwatsn9ylz] {
        width: 100%;
        border-collapse: collapse;
    }

    .users-table thead[b-jwatsn9ylz] {
        background: var(--bg-tertiary, rgba(0,0,0,0.04));
    }

    .users-table th[b-jwatsn9ylz] {
        padding: 0.875rem 1rem;
        text-align: left;
        font-weight: 600;
        color: var(--text-primary);
        border-bottom: 2px solid var(--border-color);
        white-space: nowrap;
        font-size: 0.875rem;
    }

    .users-table td[b-jwatsn9ylz] {
        padding: 0.875rem 1rem;
        border-bottom: 1px solid var(--border-color);
        vertical-align: middle;
    }

    .users-table tbody tr:last-child td[b-jwatsn9ylz] {
        border-bottom: none;
    }

    .users-table tbody tr:hover[b-jwatsn9ylz] {
        background: var(--hover-bg, rgba(0,0,0,0.02));
    }

    html.dark .users-table tbody tr:hover[b-jwatsn9ylz] {
        background: rgba(255,255,255,0.03);
    }

    .actions-col[b-jwatsn9ylz] {
        text-align: right;
    }

    /* ─── User Cell ───────────────────────────────────────────────── */
    .user-cell[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .avatar[b-jwatsn9ylz] {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, #8DC63F 0%, #6BA32B 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .avatar-lg[b-jwatsn9ylz] {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
        border-radius: 50%;
    }

    .user-info strong[b-jwatsn9ylz] {
        display: block;
        color: var(--text-primary);
        font-size: 0.9rem;
    }

    .user-info small[b-jwatsn9ylz] {
        color: var(--text-secondary);
        font-size: 0.78rem;
    }

    .email-text[b-jwatsn9ylz] {
        color: var(--text-secondary);
        font-size: 0.875rem;
    }

    .verified-icon[b-jwatsn9ylz] {
        color: #28a745;
        font-weight: bold;
        margin-left: 0.35rem;
        font-size: 0.9rem;
    }

    html.dark .verified-icon[b-jwatsn9ylz] { color: #7ed37f; }

    .date-text[b-jwatsn9ylz] {
        color: var(--text-secondary);
        font-size: 0.875rem;
        white-space: nowrap;
    }

    /* ─── Badges ──────────────────────────────────────────────────── */
    .badge[b-jwatsn9ylz] {
        display: inline-block;
        padding: 0.2rem 0.65rem;
        border-radius: 20px;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .badge-success[b-jwatsn9ylz] { background: #d4edda; color: #155724; }
    .badge-danger[b-jwatsn9ylz]  { background: #f8d7da; color: #721c24; }
    .badge-warning[b-jwatsn9ylz] { background: #fff3cd; color: #856404; }
    .badge-info[b-jwatsn9ylz]    { background: #d1ecf1; color: #0c5460; }

    html.dark .badge-success[b-jwatsn9ylz] { background: #1e4620; color: #7ed37f; }
    html.dark .badge-danger[b-jwatsn9ylz]  { background: #5a1a1a; color: #f87171; }
    html.dark .badge-warning[b-jwatsn9ylz] { background: #5a4a1a; color: #fbbf24; }
    html.dark .badge-info[b-jwatsn9ylz]    { background: #1a3a4a; color: #60a5fa; }

    /* ─── Role Badges ─────────────────────────────────────────────── */
    .roles-cell[b-jwatsn9ylz] {
        display: flex;
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .role-badge[b-jwatsn9ylz] {
        display: inline-block;
        padding: 0.18rem 0.6rem;
        border-radius: 6px;
        font-size: 0.72rem;
        font-weight: 600;
        background: var(--bg-tertiary, #eee);
        color: var(--text-secondary);
        white-space: nowrap;
    }

    .role-badge.role-admin[b-jwatsn9ylz]   { background: rgba(220, 53, 69, 0.15); color: #dc3545; }
    .role-badge.role-billing[b-jwatsn9ylz] { background: rgba(141, 198, 63, 0.15); color: #6BA32B; }
    .role-badge.role-pro[b-jwatsn9ylz]     { background: rgba(96, 165, 250, 0.15); color: #3b82f6; }

    html.dark .role-badge.role-admin[b-jwatsn9ylz]   { background: rgba(220, 53, 69, 0.2); color: #f87171; }
    html.dark .role-badge.role-billing[b-jwatsn9ylz] { background: rgba(141, 198, 63, 0.2); color: #8DC63F; }
    html.dark .role-badge.role-pro[b-jwatsn9ylz]     { background: rgba(96, 165, 250, 0.2); color: #60a5fa; }

    /* ─── Action Buttons ──────────────────────────────────────────── */
    .action-btns[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        justify-content: flex-end;
    }

    .btn-sm[b-jwatsn9ylz] {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.35rem 0.65rem;
        font-size: 0.8rem;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .btn-sm:disabled[b-jwatsn9ylz] { opacity: 0.5; cursor: not-allowed; }

    .btn-info[b-jwatsn9ylz]    { background: #17a2b8; color: white; }
    .btn-info:hover:not(:disabled)[b-jwatsn9ylz] { background: #138496; }
    .btn-warning[b-jwatsn9ylz] { background: #ffc107; color: #212529; }
    .btn-warning:hover:not(:disabled)[b-jwatsn9ylz] { background: #e0a800; }
    .btn-success[b-jwatsn9ylz] { background: #28a745; color: white; }
    .btn-success:hover:not(:disabled)[b-jwatsn9ylz] { background: #218838; }
    .btn-danger[b-jwatsn9ylz]  { background: #dc3545; color: white; }
    .btn-danger:hover:not(:disabled)[b-jwatsn9ylz]  { background: #c82333; }
    .btn-secondary[b-jwatsn9ylz] { background: var(--card-bg); border: 1px solid var(--border-color); color: var(--text-primary); padding: 0.5rem 1.25rem; border-radius: 8px; cursor: pointer; font-size: 0.9rem; transition: all 0.2s; }
    .btn-secondary:hover[b-jwatsn9ylz] { border-color: var(--accent-primary); }

    .btn-warning[b-jwatsn9ylz], .btn-success-outline[b-jwatsn9ylz] {
        padding: 0.5rem 1.25rem;
        border-radius: 8px;
        font-size: 0.9rem;
        cursor: pointer;
        border: none;
        font-weight: 600;
        transition: all 0.2s;
    }

    .btn-success-outline[b-jwatsn9ylz] {
        background: transparent;
        border: 2px solid #28a745;
        color: #28a745;
    }

    .btn-success-outline:hover:not(:disabled)[b-jwatsn9ylz] {
        background: #28a745;
        color: white;
    }

    /* ─── Pagination ──────────────────────────────────────────────── */
    .pagination[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        border-top: 1px solid var(--border-color);
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .table-footer[b-jwatsn9ylz] {
        padding: 0.875rem 1.5rem;
        border-top: 1px solid var(--border-color);
        color: var(--text-secondary);
        font-size: 0.875rem;
    }

    .page-info[b-jwatsn9ylz] {
        color: var(--text-secondary);
        font-size: 0.875rem;
    }

    .page-btn[b-jwatsn9ylz] {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1rem;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--text-primary);
        cursor: pointer;
        font-size: 0.875rem;
        transition: all 0.2s;
    }

    .page-btn:hover:not(:disabled)[b-jwatsn9ylz] {
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }

    .page-btn:disabled[b-jwatsn9ylz] {
        opacity: 0.4;
        cursor: not-allowed;
    }

    /* ─── Loading / Empty States ──────────────────────────────────── */
    .loading-state[b-jwatsn9ylz],
    .empty-state[b-jwatsn9ylz] {
        padding: 4rem 2rem;
        text-align: center;
        color: var(--text-secondary);
    }

    .spinner[b-jwatsn9ylz] {
        width: 40px;
        height: 40px;
        border: 3px solid var(--border-color);
        border-top-color: var(--accent-primary);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin: 0 auto 1rem;
    }

    /* ─── Modal ───────────────────────────────────────────────────── */
    .modal-overlay[b-jwatsn9ylz] {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        padding: 1rem;
        backdrop-filter: blur(2px);
    }

    .modal-content[b-jwatsn9ylz] {
        background: var(--card-bg);
        border-radius: 16px;
        width: 100%;
        max-width: 860px;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
        border: 1px solid var(--border-color);
    }

    html.dark .modal-content[b-jwatsn9ylz] {
        background: #1e1e1e;
    }

    .modal-header[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        gap: 1rem;
    }

    .modal-title[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .modal-title h2[b-jwatsn9ylz] {
        margin: 0;
        font-size: 1.25rem;
        color: var(--text-primary);
    }

    .modal-title small[b-jwatsn9ylz] {
        color: var(--text-secondary);
        font-size: 0.875rem;
    }

    .close-btn[b-jwatsn9ylz] {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text-secondary);
        padding: 0.5rem;
        border-radius: 8px;
        display: flex;
        transition: all 0.2s;
    }

    .close-btn:hover[b-jwatsn9ylz] {
        background: var(--border-color);
        color: var(--text-primary);
    }

    .modal-body[b-jwatsn9ylz] {
        flex: 1;
        overflow-y: auto;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .modal-section h3[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0 0 1rem 0;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-color);
    }

    .modal-section h3 svg[b-jwatsn9ylz] {
        color: var(--accent-primary);
    }

    .info-grid[b-jwatsn9ylz] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }

    .info-item[b-jwatsn9ylz] {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .info-item label[b-jwatsn9ylz] {
        font-size: 0.78rem;
        color: var(--text-secondary);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .info-item span[b-jwatsn9ylz] {
        color: var(--text-primary);
        font-size: 0.9rem;
    }

    .mono-text[b-jwatsn9ylz] {
        font-family: 'Courier New', monospace;
        font-size: 0.78rem !important;
        color: var(--text-secondary) !important;
        word-break: break-all;
    }

    /* Roles Manager */
    .roles-manager[b-jwatsn9ylz] {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .current-roles[b-jwatsn9ylz] {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        min-height: 2rem;
        align-items: center;
    }

    .role-item[b-jwatsn9ylz] {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }

    .remove-role-btn[b-jwatsn9ylz] {
        background: rgba(220, 53, 69, 0.15);
        border: none;
        border-radius: 4px;
        cursor: pointer;
        color: #dc3545;
        padding: 0.15rem 0.25rem;
        display: flex;
        align-items: center;
        transition: all 0.2s;
    }

    .remove-role-btn:hover:not(:disabled)[b-jwatsn9ylz] {
        background: rgba(220, 53, 69, 0.3);
    }

    .remove-role-btn:disabled[b-jwatsn9ylz] {
        opacity: 0.5;
        cursor: not-allowed;
    }

    html.dark .remove-role-btn[b-jwatsn9ylz] { background: rgba(220, 53, 69, 0.2); }

    .no-roles[b-jwatsn9ylz] {
        color: var(--text-secondary);
        font-style: italic;
        font-size: 0.875rem;
    }

    .add-role-row[b-jwatsn9ylz] {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .role-select[b-jwatsn9ylz] {
        flex: 1;
        padding: 0.5rem 0.75rem;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--text-primary);
        font-size: 0.875rem;
        cursor: pointer;
    }

    html.dark .role-select[b-jwatsn9ylz] {
        background: #2a2a2a;
    }

    /* Subscriptions */
    .subscriptions-list[b-jwatsn9ylz] {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .sub-card[b-jwatsn9ylz] {
        padding: 0.875rem 1rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: var(--bg-primary, rgba(0,0,0,0.02));
    }

    html.dark .sub-card[b-jwatsn9ylz] {
        background: #141414;
    }

    .sub-card-header[b-jwatsn9ylz] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }

    .sub-card-details[b-jwatsn9ylz] {
        display: flex;
        gap: 1rem;
        font-size: 0.8rem;
        color: var(--text-secondary);
        flex-wrap: wrap;
    }

    .sub-card-details code[b-jwatsn9ylz] {
        font-size: 0.72rem;
        padding: 0.1rem 0.35rem;
        background: var(--border-color);
        border-radius: 4px;
    }

    .empty-section[b-jwatsn9ylz] {
        color: var(--text-secondary);
        font-style: italic;
        font-size: 0.875rem;
        margin: 0;
    }

    .modal-footer[b-jwatsn9ylz] {
        padding: 1.25rem 1.5rem;
        border-top: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .modal-actions-left[b-jwatsn9ylz] {
        display: flex;
        gap: 0.5rem;
    }
</style[b-jwatsn9ylz]>

/* _content/LomGroupBilling/Components/Pages/Dashboard.razor.rz.scp.css */
.dashboard-page[b-r15uukh4zr] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-header[b-r15uukh4zr] {
    margin-bottom: 2rem;
}

.header-welcome h1[b-r15uukh4zr] {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 0;
}

.stats-grid[b-r15uukh4zr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-card[b-r15uukh4zr] {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.stat-card:hover[b-r15uukh4zr] {
    transform: translateY(-2px);
}

.stat-icon[b-r15uukh4zr] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3C3C3C 0%, #555555 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.stat-content[b-r15uukh4zr] {
    flex: 1;
}

.stat-label[b-r15uukh4zr] {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-value[b-r15uukh4zr] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-active[b-r15uukh4zr] {
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.stat-subtitle[b-r15uukh4zr] {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dashboard-tabs[b-r15uukh4zr] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
}

.tab-button[b-r15uukh4zr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.tab-button:hover[b-r15uukh4zr] {
    color: var(--text-primary);
    background: var(--card-bg);
}

.tab-button.active[b-r15uukh4zr] {
    color: #8DC63F;
    border-bottom-color: #8DC63F;
    background: var(--card-bg);
}

.tab-content[b-r15uukh4zr] {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.profile-section[b-r15uukh4zr] {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.profile-section h2[b-r15uukh4zr] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-subtitle[b-r15uukh4zr] {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.profile-grid[b-r15uukh4zr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-field label[b-r15uukh4zr] {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.field-value[b-r15uukh4zr] {
    font-size: 1rem;
    color: var(--text-primary);
    padding: 0.5rem 0;
}

.license-list[b-r15uukh4zr], .downloads-list[b-r15uukh4zr], .subscription-list[b-r15uukh4zr] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.license-item[b-r15uukh4zr], .download-item[b-r15uukh4zr], .subscription-item[b-r15uukh4zr] {
    padding: 1.25rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.license-info strong[b-r15uukh4zr], .download-info strong[b-r15uukh4zr], .subscription-info h3[b-r15uukh4zr] {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.license-info p[b-r15uukh4zr], .download-info p[b-r15uukh4zr], .subscription-info p[b-r15uukh4zr] {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.license-info code[b-r15uukh4zr] {
    background: var(--card-bg);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.download-item[b-r15uukh4zr], .subscription-item[b-r15uukh4zr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-cards[b-r15uukh4zr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.action-card[b-r15uukh4zr] {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-icon[b-r15uukh4zr] {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8DC63F 0%, #6BA32B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.action-content h3[b-r15uukh4zr] {
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.action-content p[b-r15uukh4zr] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.empty-state[b-r15uukh4zr] {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.badge[b-r15uukh4zr] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-active[b-r15uukh4zr] {
    background: #d1fae5;
    color: #065f46;
}

.badge-inactive[b-r15uukh4zr] {
    background: #fee2e2;
    color: #991b1b;
}

.subscription-table table[b-r15uukh4zr] {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
}

.subscription-table thead[b-r15uukh4zr] {
    background: var(--card-bg);
    border-bottom: 2px solid var(--border-color);
}

.subscription-table th[b-r15uukh4zr] {
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subscription-table td[b-r15uukh4zr] {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.subscription-table tbody tr:last-child td[b-r15uukh4zr] {
    border-bottom: none;
}

.subscription-table tbody tr:hover[b-r15uukh4zr] {
    background: var(--card-bg);
}

.type-badge[b-r15uukh4zr] {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.status-badge[b-r15uukh4zr] {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.status-badge.status-active[b-r15uukh4zr] {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.status-canceled[b-r15uukh4zr] {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.status-past_due[b-r15uukh4zr] {
    background: #fed7aa;
    color: #9a3412;
}

.status-badge.status-inactive[b-r15uukh4zr] {
    background: #fee2e2;
    color: #991b1b;
}

.license-table table[b-r15uukh4zr] {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
}

.license-table thead[b-r15uukh4zr] {
    background: var(--card-bg);
    border-bottom: 2px solid var(--border-color);
}

.license-table th[b-r15uukh4zr] {
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.license-table td[b-r15uukh4zr] {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.license-table tbody tr:last-child td[b-r15uukh4zr] {
    border-bottom: none;
}

.license-table tbody tr:hover[b-r15uukh4zr] {
    background: var(--card-bg);
}

.license-key-code[b-r15uukh4zr] {
    background: var(--card-bg);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.action-btn[b-r15uukh4zr] {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover[b-r15uukh4zr] {
    background: var(--card-bg);
    color: var(--text-primary);
    border-color: #8DC63F;
}

.empty-state-table[b-r15uukh4zr] {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-secondary);
}
</style[b-r15uukh4zr]>

