/* Collector Identity Grid */
.collector-identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 8px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.collector-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.collector-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 600;
}

.collector-value {
    font-size: 13px;
    color: #111827;
    font-weight: 500;
    line-height: 1.4;
}