/* Search input */
.list-toolbar {
    padding: 12px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.list-toolbar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-search {
    position: relative;
    flex: 1;
}

.list-search input {
    width: 100%;
    height: 30px;
    padding: 0 10px 0 28px;
    border-radius: 6px;
    border: 1px solid var(--border-primary);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 12px;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Inter', sans-serif;
}

.list-search input::placeholder {
    color: var(--text-tertiary);
}

.list-search input:focus {
    border-color: var(--accent-purple);
}

.list-search .s-icon {
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 11px;
    pointer-events: none;
}

/* Action buttons */
.list-action-btn {
    height: 30px;
    padding: 0 12px;
    border-radius: 6px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: background 0.15s;
    flex-shrink: 0;
}

.list-action-btn.green {
    background: var(--accent-green);
    color: white;
}

.list-action-btn.green:hover {
    background: var(--accent-green-hover);
}

.list-action-btn.blue {
    background: var(--accent-blue);
    color: white;
}

.list-action-btn.blue:hover {
    background: var(--accent-blue-hover);
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    gap: 0;
}

.filter-tab {
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-primary);
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Inter', sans-serif;
}

.filter-tab:first-child {
    border-radius: 5px 0 0 5px;
}

.filter-tab:last-child {
    border-radius: 0 5px 5px 0;
}

.filter-tab:not(:first-child) {
    border-left: none;
}

.filter-tab.active {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
}

.filter-tab:not(.active):hover {
    background: var(--bg-row-hover);
    color: var(--text-primary);
}

/* Owner dropdown */
.owner-dropdown-wrap {
    position: relative;
    display: none;
}

.owner-dropdown-wrap.visible {
    display: block;
}

.owner-dropdown {
    height: 28px;
    padding: 0 24px 0 8px;
    border-radius: 5px;
    border: 1px solid var(--border-primary);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23777'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.owner-dropdown:focus {
    border-color: var(--accent-purple);
}

/* List count */
.list-count {
    font-size: 11px;
    color: var(--text-tertiary);
    padding: 0 14px 6px;
    flex-shrink: 0;
}

.list-count strong {
    color: var(--text-secondary);
}

.list-scroll {
    flex: 1;
    overflow-y: auto;
}

/* List items */
.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: background 0.1s;
    color: inherit;
}

.list-item:hover {
    background: var(--bg-row-hover);
}

.list-item.selected {
    background: var(--bg-row-selected);
    border-left-color: var(--border-selected);
}

.li-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.li-info {
    flex: 1;
    min-width: 0;
}

.li-name {
    font-size: 12px;
    font-weight: 600;
    min-width: 0;
}

/* ================================================
   Project Name (owner/name with smart truncation)
   ================================================ */

.project-name {
    display: flex;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
}

.pn-owner {
    color: var(--text-owner);
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
}

.pn-sep {
    flex-shrink: 0;
    color: var(--text-tertiary);
    margin: 0 1px;
}

.pn-name {
    flex-shrink: 0;
}

.li-meta {
    font-size: 10px;
    color: var(--text-tertiary);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.li-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.li-type {
    font-size: 9px;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 600;
}

.li-type.owned {
    background: var(--tag-owned-bg);
    color: var(--tag-owned-text);
}

.li-type.shared {
    background: var(--tag-shared-bg);
    color: var(--tag-shared-text);
}

.li-time {
    font-size: 10px;
    color: var(--text-tertiary);
    white-space: nowrap;
}

/* Section labels */
.section-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.type-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.type-badge.owned {
    background: var(--tag-owned-bg);
    color: var(--tag-owned-text);
}

.type-badge.shared {
    background: var(--tag-shared-bg);
    color: var(--tag-shared-text);
}

/* Detail tabs */
.detail-tabs {
    display: flex;
    gap: 0;
    padding: 0 24px;
    border-bottom: 1px solid var(--border-primary);
    flex-shrink: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.detail-tab {
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.detail-tab:hover {
    color: var(--text-primary);
}

.detail-tab.active {
    color: var(--accent-purple);
    border-bottom-color: var(--accent-purple);
}

.detail-tab i {
    font-size: 11px;
}

/* Open button */
.open-btn {
    padding: 4px 10px;
    border-radius: 5px;
    border: none;
    background: var(--accent-purple);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.open-btn:hover {
    background: var(--accent-purple-hover);
}

/* Organizations */
.orgs-section {
    flex-shrink: 0;
    border-top: 1px solid var(--border-primary);
    padding: 10px 14px 14px;
}

.orgs-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    user-select: none;
}

.orgs-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.org-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.12s;
}

.org-item:hover {
    background: var(--bg-row-hover);
}

.org-icon {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.org-info {
    flex: 1;
    min-width: 0;
}

.org-name {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.org-role {
    font-size: 10px;
    color: var(--text-tertiary);
}

/* Commit items (shared between feed and project history) */
.ci-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 4px;
}

.ci-body {
    flex: 1;
    min-width: 0;
}

.ci-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.ci-msg {
    font-size: 13px;
    font-weight: 600;
    word-break: break-word;
}

.ci-project-link {
    font-size: 11px;
    color: var(--text-link);
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.ci-project-link:hover {
    text-decoration: underline;
}

.ci-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
    flex-wrap: wrap;
}

.ci-author {
    font-size: 11px;
    color: var(--text-secondary);
}

.ci-time {
    font-size: 11px;
    color: var(--text-tertiary);
}

.ci-branch {
    font-size: 10px;
    padding: 1px 7px;
    border-radius: 3px;
    font-weight: 600;
    background: var(--accent-purple-subtle);
    color: var(--accent-purple);
    border: 1px solid rgba(149, 117, 205, 0.18);
}

.ci-hash {
    font-size: 11px;
    font-family: 'SF Mono', 'Menlo', 'Monaco', monospace;
    color: var(--text-tertiary);
}

.ci-stats {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.ci-stat {
    font-size: 11px;
    font-weight: 600;
}

.ci-stat.add {
    color: var(--commit-add);
}

.ci-stat.del {
    color: var(--commit-del);
}

.ci-stat.mod {
    color: var(--commit-mod);
}

@media (max-width: 700px) {
    .list-action-btn span:last-child {
        display: none;
    }
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px 4px;
    font-size: 12px;

}

.breadcrumb-item {
    color: var(--text-tertiary);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    min-width: 0;
}

.breadcrumb-item:not(:first-child):not(.current) {
    flex-shrink: 1;
}

.breadcrumb-item:hover:not(.current) {
    color: var(--text-primary);
    text-decoration: underline;
}

.breadcrumb-item.current {
    color: var(--text-primary);
    font-weight: 500;
}

.breadcrumb-sep {
    color: var(--text-tertiary);
    font-size: 11px;
    flex-shrink: 0;
}

/* ================================================
   Detail Header (shared by settings, billing, org, profile pages)
   ================================================ */

.detail-header {
    padding: 20px 24px 16px;
}

.dh-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.org-header-identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.org-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.dh-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.dh-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dh-stat {
    font-size: 12px;
    color: var(--text-secondary);
}

.dh-usage-meter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dh-icon-purple {
    background: var(--accent-purple);
    border-radius: 50%;
}

.dh-icon-sm {
    font-size: 14px;
}

/* ================================================
   Data Table
   ================================================ */

.data-table-container {
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-secondary);
    font-size: 12px;
    border-radius: 8px;
    padding: 10px;
}

.data-table th {
    background-color: var(--bg-primary);
    padding: 10px 14px;
    text-align: left;
    font-weight: normal;
    font-size: 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-primary);
}

.data-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-primary);
    vertical-align: middle;
    background: var(--bg-tertiary);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background-color: var(--bg-hover);
}

/* Error pages */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 16px;
}

.error-code {
    font-size: 80px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: -2px;
    line-height: 1;
}

.error-msg {
    font-size: 15px;
    color: var(--text-secondary);
}

.error-sub {
    font-size: 13px;
    color: var(--text-tertiary);
    max-width: 360px;
    text-align: center;
    line-height: 1.5;
}

.error-link {
    color: var(--accent-purple);
    font-weight: 500;
    font-size: 14px;
    margin-top: 4px;
}

.error-link:hover {
    text-decoration: underline;
}

/* ================================================
   Compact Button
   ================================================ */

.compact-button {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-primary);
    cursor: pointer;
    width: fit-content;
    background-color: var(--bg-primary);
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.compact-button:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-active);
}

.compact-button.green {
    background: var(--accent-green);
    border-color: transparent;
    color: white;
}

.compact-button.green:hover {
    background: var(--accent-green-hover);
}

.compact-button.primary {
    background: var(--color-accent);
    border-color: transparent;
    color: white;
}

.compact-button.primary:hover {
    opacity: 0.85;
}

.compact-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.compact-button-danger,
.compact-button.danger {
    color: var(--color-error);
    border-color: var(--color-error);
}

.compact-button-danger:hover,
.compact-button.danger:hover {
    background: color-mix(in srgb, var(--color-error) 10%, transparent);
    color: var(--color-error);
}

/* ================================================
   Toggle Switch
   ================================================ */

.toggle-switch {
    position: relative;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border-secondary);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--accent-purple);
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(16px);
}

/* ================================================
   Modal Overlay
   ================================================ */

.billing-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
}

.billing-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    padding: 24px;
    width: 340px;
    max-width: 90vw;
}

.billing-modal h3 {
    margin: 0 0 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.billing-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
}

/* Join Team Modal */

.join-team-modal {
    width: 480px;
}

.join-team-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.join-team-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.join-team-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: var(--bg-detail-card);
    border: 1px solid var(--border-primary);
}

.join-team-card-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-purple-subtle);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.join-team-card-body {
    min-width: 0;
}

.join-team-card-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.join-team-card-desc {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ================================================
   Card Grid System
   ================================================ */

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    /* margin-bottom: 24px; */
}

.card-grid.cols-1 {
    grid-template-columns: 1fr;
}

.card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 900px) {

    .card-grid.cols-4,
    .card-grid.cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .card-grid.cols-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {

    .card-grid,
    .card-grid.cols-2,
    .card-grid.cols-3,
    .card-grid.cols-4,
    .card-grid.cols-5 {
        grid-template-columns: 1fr;
    }
}

.card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    background: var(--bg-tertiary);
    min-width: 0;
}

.card-warn {
    border-color: color-mix(in srgb, var(--color-error, #e53935) 40%, transparent);
    background: color-mix(in srgb, var(--color-error, #e53935) 5%, var(--bg-accent));
}

.card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    /* background: var(--accent-purple-subtle, color-mix(in srgb, var(--accent-purple) 12%, transparent)); */
    color: var(--accent-purple);
    font-size: 14px;
    flex-shrink: 0;
}

.card-warn .card-icon {
    background: color-mix(in srgb, var(--color-error, #e53935) 12%, transparent);
    color: var(--color-error, #e53935);
}

.card-body {
    min-width: 0;
}

.card-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 1px;
}

.card-span-2 {
    grid-column: span 2;
}

.card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.card-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.5;
}

/* .card:has(.card-desc) {
    align-items: flex-start;
} */

.card:has(.card-desc) .card-icon {
    margin-top: 2px;
}

/* ── Status badges ─────────────────────────────────────────────────── */

.status-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.status-badge.status-pending {
    background: color-mix(in srgb, var(--color-warning, #ffa726) 15%, transparent);
    color: var(--color-warning, #ffa726);
}

.status-badge.status-accepted {
    background: color-mix(in srgb, var(--color-success, #66bb6a) 15%, transparent);
    color: var(--color-success, #66bb6a);
}

.status-badge.status-declined {
    background: color-mix(in srgb, var(--color-error, #e53935) 15%, transparent);
    color: var(--color-error, #e53935);
}

/* ── Row actions (ellipsis menu) ──────────────────────────────────── */

.row-actions {
    position: relative;
    flex-shrink: 0;
}

.row-actions-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    transition: color 0.15s, background 0.15s;
}

.row-actions-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.row-actions-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: var(--z-dropdown);
    min-width: 160px;
    padding: 4px 0;
}

.row-actions-menu.open {
    display: flex;
    flex-direction: column;
}

.row-actions-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
}

.row-actions-menu-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.row-actions-menu-item i {
    width: 14px;
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
}

.row-actions-menu-item.danger {
    color: var(--color-error, #e53935);
}

.row-actions-menu-item.danger i {
    color: var(--color-error, #e53935);
}

.row-actions-menu-item.danger:hover {
    background: color-mix(in srgb, var(--color-error, #e53935) 8%, transparent);
}

/* ── Activity feed ──────────────────────────────────────────────────── */

.activity-list {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: background 0.12s;
    background: var(--bg-card);
}

.activity-item:last-child {
    border-bottom: none;
}

a.activity-item:hover {
    background: var(--bg-row-hover);
}

.activity-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 1px;
    color: var(--accent-purple);
}

.activity-body {
    min-width: 0;
    flex: 1;
}

.activity-desc {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-project {
    font-weight: 600;
}

.activity-message {
    color: var(--text-secondary);
}

.activity-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

/* ── Empty state ───────────────────────────────────────────────────── */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.empty-state-icon {
    font-size: 28px;
    opacity: 0.35;
    margin-bottom: 4px;
}

.empty-state p {
    margin: 0;
}