
    .news-page .table-panel {
      margin-top: 6px;
    }
    .news-panel-head {
      align-items: center;
      flex-wrap: wrap;
    }
    .news-tools {
      width: min(720px, 100%);
      margin-left: auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
    }
    .news-view-switch {
      display: inline-flex;
      flex: 0 0 auto;
      border: 1px solid var(--line);
      border-radius: 8px;
      overflow: hidden;
      background: var(--panel2);
    }
    .news-view-switch button {
      height: 32px;
      border: 0;
      border-right: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
      color: var(--muted);
      font-size: 12px;
      font-weight: 760;
    }
    .news-view-switch button:last-child {
      border-right: 0;
    }
    .news-view-switch button.active {
      background: rgba(88, 166, 255, 0.12);
      color: var(--blue);
    }
    .news-search {
      max-width: 300px;
    }
    .news-refresh {
      width: 34px;
      min-width: 34px;
      height: 34px;
      padding: 0;
      color: var(--muted);
      font-size: 20px;
      line-height: 1;
    }
    .news-refresh:hover,
    .news-refresh:focus-visible {
      border-color: var(--blue);
      color: var(--text);
      outline: none;
    }
    .news-refresh.is-loading {
      animation: news-spin 0.8s linear infinite;
    }
    @keyframes news-spin {
      to { transform: rotate(360deg); }
    }
    .news-table {
      min-width: 1260px;
      table-layout: fixed;
    }
    .news-table th,
    .news-table td {
      text-align: left;
      vertical-align: top;
    }
    .news-table th:nth-child(1) { width: 132px; }
    .news-table th:nth-child(2) { width: 285px; }
    .news-table th:nth-child(3) { width: 210px; }
    .news-table th:nth-child(4) { width: 105px; }
    .news-table th:nth-child(5) { width: 185px; }
    .news-table th:nth-child(6) { width: 82px; }
    .news-table th:nth-child(7) { width: 92px; }
    .news-table th:nth-child(8) { width: 135px; }
    .news-table th:nth-child(9),
    .news-table td:nth-child(9) {
      width: 54px;
      text-align: right;
    }
    .news-table td {
      padding-top: 9px;
      padding-bottom: 9px;
      white-space: normal;
    }
    .news-row td:first-child {
      border-left: 3px solid transparent;
    }
    .news-row-top td:first-child { border-left-color: var(--red); }
    .news-row-high td:first-child { border-left-color: var(--amber); }
    .news-row-medium td:first-child { border-left-color: var(--blue); }
    .news-row-info td:first-child { border-left-color: var(--muted); }
    .news-time,
    .news-window,
    .news-days {
      font-variant-numeric: tabular-nums;
    }
    .news-time {
      color: var(--text);
      font-weight: 720;
      white-space: nowrap !important;
    }
    .news-time.estimated {
      color: var(--amber);
      white-space: normal !important;
    }
    .news-event-title {
      color: var(--text);
      font-weight: 760;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }
    .news-event-asset {
      margin-top: 3px;
      color: var(--muted);
      font-size: 11px;
    }
    .news-pairs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      align-items: flex-start;
    }
    .news-pair-chip,
    .news-badge {
      display: inline-flex;
      align-items: center;
      min-height: 22px;
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 2px 6px;
      background: var(--panel2);
      font-size: 11px;
      font-weight: 760;
      line-height: 1.2;
    }
    .news-pair-chip {
      color: var(--text);
    }
    .news-pair-more {
      color: var(--blue);
    }
    .news-priority-top {
      border-color: rgba(255, 92, 119, 0.52);
      background: rgba(255, 92, 119, 0.10);
      color: var(--red);
    }
    .news-priority-high {
      border-color: rgba(243, 184, 76, 0.50);
      background: rgba(243, 184, 76, 0.09);
      color: var(--amber);
    }
    .news-priority-medium {
      border-color: rgba(88, 166, 255, 0.48);
      background: rgba(88, 166, 255, 0.09);
      color: var(--blue);
    }
    .news-priority-info {
      color: var(--muted);
    }
    .news-status-confirmed {
      border-color: rgba(33, 197, 139, 0.48);
      background: rgba(33, 197, 139, 0.09);
      color: var(--green);
    }
    .news-status-estimated {
      border-color: rgba(243, 184, 76, 0.50);
      background: rgba(243, 184, 76, 0.09);
      color: var(--amber);
    }
    .news-status-secondary {
      color: var(--muted);
    }
    .news-source-cell a {
      color: var(--blue);
      text-decoration: none;
      overflow-wrap: anywhere;
    }
    .news-source-cell a:hover {
      text-decoration: underline;
    }
    .news-empty {
      height: 120px;
      color: var(--muted);
      text-align: center !important;
      vertical-align: middle !important;
    }
    @media (max-width: 900px) {
      .news-tools {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        flex-wrap: wrap;
      }
      .news-search {
        max-width: none;
      }
    }
    @media (max-width: 520px) {
      .news-view-switch {
        width: calc(100% - 42px);
      }
      .news-view-switch button {
        flex: 1 1 0;
      }
      .news-search {
        order: 2;
        width: 100%;
        flex-basis: 100%;
      }
      .news-table-panel {
        padding: 8px;
      }
    }
