/* =========================================================
   DASHBOARD – shared tokens
   ========================================================= */
.lp-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.lp-sep {
    color: #cbd5e1;
    font-weight: 700;
    margin: 0 4px;
}

.lp-muted {
    color: var(--lp-muted);
    font-weight: 600;
    font-size: 12px;
}

/* =========================================================
   HERO – Slim variant with aurora
   ========================================================= */
.lp-hero {
    position: relative;
    border-radius: 22px;
    background: linear-gradient(135deg, #0656b0 0%, #0783ff 45%, #3aa0ff 100%);
    color: #fff;
    box-shadow:
        0 24px 48px -24px rgba(11, 94, 215, .55),
        0 12px 26px rgba(2, 6, 23, .12);
    overflow: hidden;
    isolation: isolate;
}

.lp-hero::before,
.lp-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.lp-hero::before {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 204, 0, .55), transparent 70%);
    top: -120px;
    right: -80px;
    animation: lp-aurora1 18s ease-in-out infinite alternate;
}

.lp-hero::after {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(6, 182, 212, .6), transparent 70%);
    bottom: -140px;
    left: 25%;
    animation: lp-aurora2 22s ease-in-out infinite alternate;
}

@keyframes lp-aurora1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 60px) scale(1.15); }
}

@keyframes lp-aurora2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(110px, -40px) scale(1.2); }
}

.lp-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
}

.lp-hero--slim .lp-hero-inner {
    padding: 18px 26px;
}

.lp-hero-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .28);
    font-size: 24px;
    flex: 0 0 auto;
}

.lp-hero-icon::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .35);
    animation: lp-pulse-ring 2.8s ease-out infinite;
}

@keyframes lp-pulse-ring {
    0%   { transform: scale(1);    opacity: .9; }
    80%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

.lp-hero-text {
    flex: 1 1 auto;
    min-width: 0;
}

.lp-hero-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -.3px;
}

.lp-hero-sub {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    opacity: .9;
}

.lp-hero-sub .accent {
    color: #ffcc00;
}

.lp-hero-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.lp-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
}

.lp-hero-chip i {
    opacity: .85;
}

.lp-hero-chip--live {
    font-variant-numeric: tabular-nums;
}

.lp-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
    animation: lp-live 1.8s ease-out infinite;
}

@keyframes lp-live {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, .7); }
    80%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 900px) {
    .lp-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .lp-hero-title {
        font-size: 20px;
    }
}

/* =========================================================
   QUICKBAR (horizontal shortcuts)
   ========================================================= */
.lp-dash-quickbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .03);
}

.lp-dash-shortcut {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-text) !important;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    transition:
        background .2s ease,
        border-color .2s ease,
        transform .08s ease,
        box-shadow .2s ease;
}

.lp-dash-shortcut::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        color-mix(in srgb, currentColor 12%, transparent),
        transparent 60%);
    opacity: 0;
    transition: opacity .2s ease;
}

.lp-dash-shortcut:hover {
    background: #ffffff;
    border-color: color-mix(in srgb, currentColor 25%, var(--lp-border));
    box-shadow: 0 6px 16px -6px color-mix(in srgb, currentColor 35%, transparent);
    transform: translateY(-1px);
}

.lp-dash-shortcut:hover::before {
    opacity: 1;
}

.lp-dash-shortcut i {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.lp-dash-shortcut span {
    position: relative;
    z-index: 1;
    color: var(--lp-text);
}

/* "Anpassen"-Button am Ende der Quickbar – dezent abgesetzt */
.lp-dash-shortcut--config {
    background: transparent;
    border: 1px dashed var(--lp-border);
    color: #64748b !important;
    margin-left: auto;
}
.lp-dash-shortcut--config span { color: #64748b; }

/* Leerzustand: Aufforderung, Shortcuts einzurichten */
.lp-dash-quickbar-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px dashed #bfdbfe;
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: #0656b0 !important;
    text-decoration: none !important;
    transition: border-color .2s ease, box-shadow .2s ease, transform .08s ease;
}
.lp-dash-quickbar-empty:hover {
    border-color: #60a5fa;
    box-shadow: 0 6px 16px -8px rgba(37, 99, 235, .4);
    transform: translateY(-1px);
}
.lp-dash-quickbar-empty > i:first-child { font-size: 20px; }
.lp-dash-quickbar-empty-arrow { margin-left: auto; transition: transform .2s ease; }
.lp-dash-quickbar-empty:hover .lp-dash-quickbar-empty-arrow { transform: translateX(3px); }

/* =========================================================
   HEADLINE KPI CARDS (4 big cards)
   ========================================================= */
.lp-dash-headline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.lp-dash-hcard {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 22px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--lp-border);
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
    text-decoration: none !important;
    color: var(--lp-text) !important;
    overflow: hidden;
    isolation: isolate;
    min-height: 180px;
    transition:
        transform .22s cubic-bezier(.2, .9, .3, 1.2),
        box-shadow .22s ease,
        border-color .22s ease;
    opacity: 0;
    animation: lp-card-in .55s cubic-bezier(.2, .9, .3, 1.2) forwards;
}

.lp-dash-headline .lp-dash-hcard:nth-child(1) { animation-delay: 60ms; }
.lp-dash-headline .lp-dash-hcard:nth-child(2) { animation-delay: 140ms; }
.lp-dash-headline .lp-dash-hcard:nth-child(3) { animation-delay: 220ms; }
.lp-dash-headline .lp-dash-hcard:nth-child(4) { animation-delay: 300ms; }

@keyframes lp-card-in {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lp-dash-hcard::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 4px;
    background: currentColor;
    z-index: 2;
}

.lp-dash-hcard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255, 255, 255, .5) 48%,
        rgba(255, 255, 255, .5) 52%,
        transparent 70%
    );
    transform: translateX(-120%);
    transition: transform .9s ease;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: overlay;
}

.lp-dash-hcard:hover::after {
    transform: translateX(120%);
}

.lp-dash-hcard > * {
    position: relative;
    z-index: 1;
}

.lp-dash-hcard:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, currentColor 30%, var(--lp-border));
    box-shadow:
        0 18px 32px -14px color-mix(in srgb, currentColor 45%, transparent),
        0 6px 12px rgba(15, 23, 42, .06);
}

.lp-dash-hcard-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-dash-hcard-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: currentColor;
    flex: 0 0 auto;
}

.lp-dash-hcard-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--lp-muted);
}

.lp-dash-hcard-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex: 1 1 auto;
}

.lp-dash-hcard-main--ring {
    justify-content: flex-start;
    gap: 14px;
}

.lp-dash-hcard-val {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: var(--lp-text);
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}

.lp-dash-hcard-side .lp-dash-hcard-val {
    font-size: 24px;
}

.lp-dash-hcard-hint {
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
}

.lp-dash-hcard-spark {
    flex: 0 0 auto;
}

.lp-dash-hcard-splitbar {
    display: flex;
    height: 8px;
    border-radius: 6px;
    background: #f1f5f9;
    overflow: hidden;
}

.lp-dash-hcard-splitbar-a {
    background: #3399ff;
    transition: width .8s cubic-bezier(.2, .9, .3, 1.2);
}

.lp-dash-hcard-splitbar-b {
    background: #0ea5e9;
    transition: width .8s cubic-bezier(.2, .9, .3, 1.2);
}

.lp-dash-hcard-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-dash-hcard-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Color variants */
.lp-dash-hcard--blue    { color: #3399ff; }
.lp-dash-hcard--emerald { color: #10b981; }
.lp-dash-hcard--violet  { color: #8b5cf6; }
.lp-dash-hcard--alert   { color: #f97316; }
.lp-dash-hcard--muted   { color: #10b981; }

/* To-do badge */
.lp-dash-hcard-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.lp-dash-hcard-badge--pulse {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
    color: #c2410c;
    animation: lp-badge-pulse 2s ease-in-out infinite;
}

.lp-dash-hcard-badge--ok {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #047857;
}

@keyframes lp-badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, .4); }
    50%      { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
}

/* Big progress ring (for Team / Fuhrpark headline) */
.lp-dash-bigring {
    position: relative;
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    background: transparent;
    border: 0;
}

.lp-dash-bigring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    background: transparent;
    overflow: visible;
}

.lp-ring-bg {
    fill: none;
    stroke: #eef2f7;
    stroke-width: 3.2;
}

.lp-ring-fg {
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
    stroke-linecap: round;
    transition: stroke-dasharray 1.4s cubic-bezier(.2, .9, .3, 1.2);
}

.lp-dash-bigring-pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    font-size: 18px;
    font-weight: 900;
    color: var(--lp-text);
    font-variant-numeric: tabular-nums;
    background: transparent;
    line-height: 1;
    pointer-events: none;
}

.lp-dash-bigring-pct small {
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-muted);
    background: transparent;
}

.lp-dash-hcard-side {
    flex: 1 1 auto;
}

/* =========================================================
   PANEL (white card with title)
   ========================================================= */
.lp-dash-panel {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
    height: 100%;
    opacity: 0;
    animation: lp-card-in .6s cubic-bezier(.2, .9, .3, 1.2) 380ms forwards;
}

.lp-dash-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-dash-panel-title i {
    font-size: 18px;
}

.lp-dash-panel-meta {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-muted);
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 999px;
}

.lp-dash-panel--chart {
    overflow: hidden;
}

.lp-dash-chart-wrap {
    position: relative;
    height: 240px;
}

/* Empty state */
.lp-dash-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 36px 16px;
    color: var(--lp-muted);
    font-weight: 600;
    font-size: 13px;
    text-align: center;
}

.lp-dash-empty i {
    font-size: 32px;
    color: #cbd5e1;
}

/* =========================================================
   DONUT PANELS
   ========================================================= */
.lp-dash-donut-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 24px;
}

.lp-dash-donut-wrap {
    position: relative;
    width: 180px;
    height: 180px;
}

.lp-dash-donut-wrap canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.lp-dash-donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    line-height: 1;
}

.lp-dash-donut-num {
    font-size: 30px;
    font-weight: 900;
    color: var(--lp-text);
    line-height: 1;
    letter-spacing: -.5px;
}

.lp-dash-donut-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.lp-dash-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-dash-donut-legend > div {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: #f8fafc;
    transition: background .15s ease, transform .05s ease;
}

.lp-dash-donut-legend > div:hover {
    background: #f1f5f9;
}

.lp-dash-donut-legend .label {
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-dash-donut-legend .val {
    font-size: 15px;
    font-weight: 900;
    color: var(--lp-text);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 560px) {
    .lp-dash-donut-row {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .lp-dash-donut-legend {
        width: 100%;
    }
}

/* =========================================================
   MINI KPI CHIPS
   ========================================================= */
.lp-dash-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.lp-dash-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--lp-border);
    text-decoration: none !important;
    color: var(--lp-text) !important;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.lp-dash-mini:hover {
    border-color: color-mix(in srgb, currentColor 30%, var(--lp-border));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px color-mix(in srgb, currentColor 40%, transparent);
}

.lp-dash-mini > i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex: 0 0 auto;
    background: color-mix(in srgb, currentColor 15%, transparent);
}

.lp-dash-mini-val {
    font-size: 20px;
    font-weight: 900;
    color: var(--lp-text);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.lp-dash-mini-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-top: 3px;
}

.lp-dash-mini--blue  { color: #3399ff; }
.lp-dash-mini--sky   { color: #0ea5e9; }
.lp-dash-mini--teal  { color: #14b8a6; }
.lp-dash-mini--green { color: #16a34a; }

/* =========================================================
   AGENDA (Heute anstehend)
   ========================================================= */
.lp-dash-agenda {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-dash-agenda-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid transparent;
    text-decoration: none !important;
    color: var(--lp-text) !important;
    transition: background .15s ease, border-color .15s ease, transform .05s ease;
}

.lp-dash-agenda-item:hover {
    background: #ffffff;
    border-color: var(--lp-border);
    box-shadow: 0 4px 12px -6px rgba(15, 23, 42, .08);
}

.lp-dash-agenda-time {
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 8px 12px;
    font-variant-numeric: tabular-nums;
    min-width: 64px;
    text-align: center;
}

.lp-dash-agenda-body {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lp-dash-agenda-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--lp-text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lp-dash-agenda-customer {
    font-weight: 600;
    color: var(--lp-muted);
    font-size: 13px;
}

.lp-dash-agenda-status {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2px;
    white-space: nowrap;
}

.lp-dash-agenda-chevron {
    color: var(--lp-muted);
    font-size: 16px;
    transition: transform .2s ease, color .2s ease;
}

.lp-dash-agenda-item:hover .lp-dash-agenda-chevron {
    color: var(--lp-text);
    transform: translateX(3px);
}

/* =========================================================
   ACTIVITY TIMELINE
   ========================================================= */
.lp-dash-timeline {
    position: relative;
    padding-left: 6px;
}

.lp-dash-timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--lp-border) 10%,
        var(--lp-border) 90%,
        transparent 100%);
    z-index: 0;
}

.lp-dash-activity {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 10px 10px 4px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background .15s ease, transform .05s ease;
}

.lp-dash-activity-link:hover {
    background: #f8fafc;
    color: inherit;
    text-decoration: none;
}

.lp-dash-activity-link:active {
    transform: scale(.998);
}

/* Aktivitäten-Verlauf: Einträge ab dem 9. erst nach Aufklappen sichtbar */
.lp-dash-activity-extra {
    display: none;
}
.lp-dash-timeline.lp-dash-show-all .lp-dash-activity-extra {
    display: flex;
}

/* Seiten-Pagination für den Aktivitäten-Feed */
.lp-dash-pager {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: opacity .15s ease;
}
.lp-dash-pager.is-loading { opacity: .5; pointer-events: none; }

.lp-pg {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
button.lp-pg:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #0783ff;
}
.lp-pg--active {
    background: #0783ff;
    border-color: #0783ff;
    color: #fff;
    cursor: default;
}
.lp-pg--disabled {
    opacity: .4;
    cursor: default;
}
.lp-pg--gap {
    border: none;
    background: transparent;
    cursor: default;
    color: #94a3b8;
}

/* "Nur eigene"-Hinweis im Panel-Titel */
.lp-dash-activity-scope {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    border-radius: 6px;
    padding: 2px 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    vertical-align: middle;
}

.lp-dash-activity-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    box-shadow:
        0 0 0 3px #ffffff,
        0 0 0 4px var(--lp-border),
        0 4px 10px -2px color-mix(in srgb, var(--dot-color, #64748b) 55%, transparent);
}

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

.lp-dash-activity-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-text);
    line-height: 1.3;
}

.lp-dash-activity-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-muted);
    margin-top: 3px;
}

.lp-dash-activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-muted);
    line-height: 1.3;
}
.lp-dash-activity-who,
.lp-dash-activity-when {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.lp-dash-activity-who i,
.lp-dash-activity-when i {
    font-size: 12px;
    color: var(--lp-muted);
    flex-shrink: 0;
}
.lp-dash-activity-who { color: var(--lp-text); }
.lp-dash-activity-who i { color: #0783ff; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    .lp-hero::before,
    .lp-hero::after,
    .lp-hero-icon::before,
    .lp-live-dot,
    .lp-dash-hcard,
    .lp-dash-panel,
    .lp-dash-hcard-badge--pulse {
        animation: none !important;
    }

    .lp-dash-hcard,
    .lp-dash-panel {
        opacity: 1;
    }

    .lp-dash-hcard::after {
        display: none;
    }

    .lp-ring-fg {
        transition: none;
    }

    .lp-dash-hcard-splitbar-a,
    .lp-dash-hcard-splitbar-b {
        transition: none;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
    .lp-dash-headline {
        grid-template-columns: 1fr 1fr;
    }
    .lp-dash-hcard-val {
        font-size: 28px;
    }
    .lp-dash-chart-wrap {
        height: 200px;
    }
    .lp-hero::before,
    .lp-hero::after {
        filter: blur(50px);
    }
}

@media (max-width: 480px) {
    .lp-dash-headline {
        grid-template-columns: 1fr;
    }
}
