#dashboardOverviewView {
    width: 100%;
}

.dashboard-overview-root {
    display: grid;
    gap: 24px;
}

.dashboard-overview-hero,
.dashboard-overview-panel {
    border: 1px solid var(--color-divider);
    background: var(--color-card-bg);
    color: var(--color-body-text);
}

.dashboard-overview-hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 28px;
    border-radius: 20px;
    overflow: hidden;
}

.dashboard-overview-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-accent-muted), transparent 70%);
    pointer-events: none;
}

.dashboard-overview-eyebrow {
    margin: 0 0 7px;
    color: var(--color-action-link);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.dashboard-overview-title {
    margin: 0;
    color: var(--color-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.dashboard-overview-summary {
    max-width: 720px;
    margin: 9px 0 0;
    color: var(--color-text-subtle);
    font-size: 14px;
    line-height: 1.65;
}

.dashboard-overview-hero-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.dashboard-overview-date {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--color-divider-strong);
    border-radius: 12px;
    background: var(--color-panel-raised);
    color: var(--color-body-text);
    font-size: 13px;
    font-weight: 800;
}

.dashboard-overview-kpis {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-overview-kpi {
    min-width: 0;
    padding: 17px 18px;
    border: 1px solid var(--color-divider);
    border-radius: 16px;
    background: var(--color-card-bg);
    color: var(--color-body-text);
    cursor: pointer;
    text-align: left;
    transition: background-color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.dashboard-overview-kpi:hover {
    border-color: var(--color-divider-strong);
    background: var(--color-panel-hover);
    transform: translateY(-1px);
}

.dashboard-overview-kpi-label,
.dashboard-overview-kpi-note {
    display: block;
    color: var(--color-text-subtle);
}

.dashboard-overview-kpi-label {
    font-size: 12px;
    font-weight: 800;
}

.dashboard-overview-kpi-value {
    display: block;
    margin-top: 10px;
    color: var(--color-heading);
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.035em;
    font-variant-numeric: tabular-nums;
}

.dashboard-overview-kpi-note {
    margin-top: 6px;
    overflow: hidden;
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-overview-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.dashboard-overview-side {
    display: grid;
    gap: 24px;
}

.dashboard-overview-panel {
    min-width: 0;
    padding: 22px;
    border-radius: 18px;
}

.dashboard-overview-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.dashboard-overview-panel-head h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.dashboard-overview-panel-head p {
    margin: 5px 0 0;
    color: var(--color-text-subtle);
    font-size: 12px;
    line-height: 1.5;
}

.dashboard-overview-count {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--color-accent-muted);
    color: var(--color-action-link);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.dashboard-action-list,
.dashboard-operations-list,
.dashboard-pipeline-list {
    display: grid;
    gap: 10px;
}

.dashboard-activity-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-activity-list > .dashboard-overview-empty {
    grid-column: 1 / -1;
}

.dashboard-action-item,
.dashboard-activity-item,
.dashboard-operation-item {
    width: 100%;
    border: 1px solid var(--color-divider);
    background: var(--color-panel-raised);
    color: var(--color-body-text);
    text-align: left;
}

.dashboard-action-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 72px;
    padding: 12px 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.16s ease, border-color 0.16s ease;
}

.dashboard-action-item:hover,
.dashboard-operation-item:hover {
    border-color: var(--color-divider-strong);
    background: var(--color-panel-hover);
}

.dashboard-action-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--color-accent-muted);
    color: var(--color-action-link);
    font-size: 12px;
    font-weight: 900;
}

.dashboard-action-copy {
    min-width: 0;
}

.dashboard-action-copy strong,
.dashboard-operation-item strong,
.dashboard-activity-item strong {
    display: block;
    overflow: hidden;
    color: var(--color-heading);
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-action-copy span,
.dashboard-operation-item span,
.dashboard-activity-item span {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    color: var(--color-text-subtle);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-action-tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--color-card-bg);
    color: var(--color-text-subtle);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.dashboard-pipeline-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 44px;
    gap: 10px;
    align-items: center;
}

.dashboard-pipeline-label,
.dashboard-pipeline-count {
    color: var(--color-body-text);
    font-size: 12px;
    font-weight: 800;
}

.dashboard-pipeline-count {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.dashboard-pipeline-track {
    height: 9px;
    border-radius: 999px;
    background: var(--color-panel-raised);
    overflow: hidden;
}

.dashboard-pipeline-fill {
    display: block;
    height: 100%;
    min-width: 5px;
    border-radius: inherit;
    background: var(--color-accent);
}

.dashboard-operation-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    cursor: pointer;
}

.dashboard-operation-value {
    color: var(--color-heading);
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.dashboard-activity-item {
    position: relative;
    min-width: 0;
    min-height: 72px;
    padding: 12px 14px 12px 28px;
    border-radius: 14px;
}

.dashboard-activity-item::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 13px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
}

.dashboard-overview-empty {
    padding: 28px 18px;
    border: 1px dashed var(--color-divider-strong);
    border-radius: 14px;
    color: var(--color-text-subtle);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1500px) {
    .dashboard-overview-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dashboard-activity-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .dashboard-overview-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .dashboard-overview-root {
        gap: 16px;
    }

    .dashboard-overview-hero {
        display: grid;
        padding: 60px 20px 20px;
    }

    .dashboard-overview-eyebrow {
        padding-left: 44px;
    }

    .dashboard-overview-title {
        font-size: 24px;
    }

    .dashboard-overview-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .dashboard-overview-panel {
        padding: 18px;
    }

    .dashboard-activity-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dashboard-overview-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-overview-kpi {
        padding: 14px;
    }

    .dashboard-overview-kpi-value {
        font-size: 21px;
    }

    .dashboard-action-item {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .dashboard-action-tag {
        display: none;
    }
}
