/* Licenses List page styles */
.license-product-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.license-product-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--rz-base-100);
    border: 1px solid var(--rz-base-200);
    padding: 2px;
    flex-shrink: 0;
}
.license-product-logo-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--rz-base-100), var(--rz-base-200));
    color: var(--rz-text-tertiary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.license-product-meta {
    min-width: 0;
}
.license-product-meta .rz-text { line-height: 1.3; }

/* Status badges */
.badge-status-active {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: var(--rz-success-lighter); color: var(--rz-success-dark);
    padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
}
.badge-status-active::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rz-success); }
.badge-status-cancelled, .badge-status-inactive {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: var(--rz-base-200); color: var(--rz-text-tertiary-color);
    padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.78rem; font-weight: 500;
}
.badge-status-suspended {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: var(--rz-warning-lighter); color: var(--rz-warning-dark);
    padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
}
.badge-status-suspended::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rz-warning); }
.badge-status-expired {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: var(--rz-info-lighter); color: var(--rz-info-dark);
    padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.78rem; font-weight: 500;
}
.badge-status-pending {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: var(--rz-secondary-lighter); color: var(--rz-secondary-dark);
    padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.78rem; font-weight: 500;
}

/* Org group header */
.org-group-header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1rem; margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--rz-base-100), transparent);
    border-left: 3px solid var(--rz-primary);
    border-radius: 0 8px 8px 0;
}
.org-group-header .org-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--rz-primary-lighter); color: var(--rz-primary);
    display: flex; align-items: center; justify-content: center;
}

/* Seats badge */
.license-seats-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 28px; height: 24px; padding: 0 0.5rem;
    border-radius: 12px; font-weight: 700; font-size: 0.8rem;
    background: var(--rz-primary-lighter); color: var(--rz-primary);
}
