/* Telegram getUpdates 뷰어 전용 스타일 — 현행 src/pages/tools/telegram-get-updates.astro 이식본(M2-A). */
    :global(.chat-id-copy) {
      display: inline-block;
      padding: 0 0.375rem;
      margin: 0 0.125rem;
      border-radius: 0.25rem;
      background-color: rgb(219 234 254);
      color: rgb(29 78 216);
      font-weight: 600;
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
      cursor: pointer;
      border: 1px solid rgb(147 197 253);
      transition: background-color 0.15s, transform 0.1s;
    }
    :global(.chat-id-copy:hover) {
      background-color: rgb(191 219 254);
    }
    :global(.chat-id-copy:active) {
      transform: scale(0.97);
    }
    :global(.dark .chat-id-copy) {
      background-color: rgb(30 58 138 / 0.5);
      color: rgb(147 197 253);
      border-color: rgb(30 64 175);
    }
    :global(.dark .chat-id-copy:hover) {
      background-color: rgb(30 64 175 / 0.7);
    }
