﻿.pipeline-chart-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    height: 100%;
    max-width: 380px;
}

.pipeline-header {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.pipeline-chart-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.radial-chart-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    margin-top: 20px;
}

.chart-label-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.label-text {
    font-size: 13px;
    color: #6b7280;
}

.label-value {
    font-size: 20px;
    font-weight: 400;
    color: #111827;
}

.pipeline-legend {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 10px;
}

.legend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.legend-count {
    font-size: 20px;
    font-weight: 400;
    color: #111827;
}

.legend-label {
    font-size: 12px;
    color: #6b7280;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    margin-bottom: 4px;
}

    .legend-color.today {
        background: #22c55e;
    }

    .legend-color.upcoming {
        background: #eab308;
    }

    .legend-color.overdue {
        background: #ef4444;
    }
.lead-val-count {
    font-size: 21px !important; /* ✅ Force override */
    font-weight: 400 !important;
    color: #ffffff;
    line-height: 1;
}







/* Dark Card Style */
.crm-header-card1 {
    background-color: #1a1d21;
    /* Dark background based on image/previous context */
    border: 1px solid #2c3036;
    border-radius: 0.75rem;
    /* ~12px */
    color: #ffffff;
}

    .crm-header-card1 .card-body {
        padding: 1.5rem;
    }

/* Header Section */
.header-title1 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #adb5bd;
    /* Muted gray for label */
}

.header-total-count1 {
    font-size: 1.9rem;
    /* Large count */
    font-weight: 400;
    color: #ffffff;
}

/* Trend Badge */
.trend-badge1 {
    display: inline-flex;
    align-items: center;
    background-color: rgba(34, 197, 94, 0.15);
    /* Green tint */
    border-radius: 0.25rem;
    padding: 0.2rem 0.5rem;
    margin-bottom: 0.25rem;
}

.trend-val1 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    /* Green text */
}

.trend-label1 {
    font-size: 0.75rem;
    color: #6c757d;
}

/* List Items Container */
.leads-list-container1 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* Generous spacing */
}

.lead-list-item1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

    .lead-list-item1:hover {
        transform: translateX(4px);
    }

.lead-item-left1 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lead-name1 {
    font-size: 0.95rem;
    color: #e9ecef;
    /* Light gray/white */
}

/*.lead-val {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}*/

/* Icons Box */
.lead-icon-box1 {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Icon Colors */
.icon-new1 {
    background-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    /* Blue */
}

.icon-hot1 {
    background-color: rgba(249, 115, 22, 0.15);
    color: #f97316;
    /* Orange */
}

.icon-warm1 {
    background-color: rgba(234, 179, 8, 0.15);
    color: #eab308;
    /* Yellow */
}

.icon-won1 {
    background-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    /* Green */
}

.icon-lost1 {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    /* Red */
}



