/* charts.css — chart wrapper sizing for the Lead Pipeline Dashboard */

/* ── Chart section titles ──────────────────────────────────────────────────── */
.enr-chart-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--enr-text-secondary, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

/* ── Chart container wrappers ─────────────────────────────────────────────── */
.enr-chart-donut {
    min-height: 280px;
    width: 100%;
}

.enr-chart-bar {
    min-height: 260px;
    width: 100%;
}

/* ── Empty state inside chart card ───────────────────────────────────────── */
.enr-chart-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    font-size: 0.875rem;
    color: var(--enr-text-secondary, #94a3b8);
    font-style: italic;
}

/* ── Feed panels ──────────────────────────────────────────────────────────── */
.enr-feed-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--enr-text-secondary, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #f1f5f9;
}

.enr-feed-count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    border-radius: 9999px;
    padding: 0.1rem 0.5rem;
}

.enr-feed-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.enr-feed-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f8fafc;
    cursor: pointer;
    transition: background 0.12s ease;
}

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

    .enr-feed-item:hover {
        background: #f8fafc;
    }

.enr-feed-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.2rem;
}

.enr-feed-child {
    font-weight: 400;
    color: #64748b;
}

.enr-feed-ai-action {
    font-size: 0.8125rem;
    color: #4F46E5;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.enr-feed-task {
    font-size: 0.75rem;
    color: #64748b;
}

.enr-feed-task-overdue {
    color: #ef4444;
    font-weight: 500;
}

.enr-feed-date {
    font-size: 0.75rem;
    color: #94a3b8;
}