/* Support Dashboard — overrides only (base styles in customers/dashboard/index.css) */

.dashboard-stats {
    grid-template-columns: repeat(3, 1fr);
}

.dashboard-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-name {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.breakdown-count {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 10px;
}
