.rc-crm-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.rc-crm-stat-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.rc-crm-stat-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #555;
}

.rc-crm-stat-card p {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #222;
}

.rc-crm-stat-card small {
    display: block;
    margin-top: 6px;
    color: #777;
}

.rc-crm-stat-card.danger {
    border-color: #d62734;
}

.rc-crm-stat-card.danger p {
    color: #d62734;
}

.rc-crm-stage-list {
    display: grid;
    gap: 8px;
}

.rc-crm-stage-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    background: #f7f7f7;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .rc-crm-stats-grid {
        grid-template-columns: 1fr;
    }
}