.hydra-freshness-item .hydra-freshness-value {
    color: #d8e8ff;
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hydra-freshness-item.state-cached .hydra-freshness-value {
    color: #9ad5ff;
}

.hydra-freshness-item.state-failed .hydra-freshness-value,
.hydra-freshness-item.state-failed-refresh .hydra-freshness-value {
    color: #ffb0b0;
}

.hydra-freshness-item.state-live .hydra-freshness-value {
    color: #8ef3b6;
}

.hydra-freshness-item.state-pending .hydra-freshness-value {
    color: #d8e8ff;
}

.hydra-freshness-item.state-stale .hydra-freshness-value {
    color: #ffe39a;
}

.hydra-live-status-action {
    align-items: center;
    background: rgba(27, 37, 51, 0.94);
    border: 1px solid rgba(99, 144, 214, 0.48);
    border-radius: 999px;
    color: #edf4ff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
    line-height: 1;
    padding: 7px 12px;
    pointer-events: auto;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hydra-live-status-action:hover {
    background: rgba(37, 57, 81, 0.98);
    border-color: rgba(144, 183, 236, 0.82);
}

.hydra-live-status-action.is-error {
    background: rgba(57, 20, 20, 0.96);
    border-color: rgba(211, 117, 117, 0.7);
    color: #ffd9d9;
}

.hydra-live-status-action.is-success {
    background: rgba(20, 48, 33, 0.96);
    border-color: rgba(115, 201, 154, 0.7);
    color: #d8ffe9;
}

.hydra-live-status-action-label {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hydra-freshness-item .hydra-freshness-value {
        max-width: 58vw;
    }
    .hydra-live-status-action {
        padding: 7px 9px;
    }
    .hydra-live-status-action-label {
        display: none;
    }
}