/* CustomerList page styles */
.stat-card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    text-transform: uppercase;
}

.customers-grid .rz-data-row {
    cursor: pointer;
}

.customers-grid .rz-data-row:hover {
    background: var(--rz-base-200) !important;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-active {
    background: var(--rz-success-lighter);
    color: var(--rz-success);
}

.status-lead {
    background: var(--rz-info-lighter);
    color: var(--rz-info);
}

.status-inactive {
    background: var(--rz-base-200);
    color: var(--rz-text-secondary-color);
}

.link-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.link-holded {
    background: var(--rz-warning-lighter);
    color: var(--rz-warning);
}

.link-arrow {
    background: var(--rz-info-lighter);
    color: var(--rz-info);
}

.link-none {
    background: var(--rz-base-200);
    color: var(--rz-text-secondary-color);
}
