/* Copyright (c) 2025-2026 William Chesher | MIT License */
/* integrations - channel health grid and URL display */

.health-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em 2em;
    padding: 1em 0;
}

.health-item {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

.health-label {
    font-size: 0.75em;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.health-value {
    font-size: 1.25em;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.ingest-url {
    font-size: 0.8em;
    word-break: break-all;
    max-width: 300px;
}

/* Prevent actions cell from rendering a separate hover background */
td.actions {
    background: transparent !important;
}
