﻿
  .copyWrap{
    max-width: 980px;
    margin: 18px 0;
    padding: 18px;
    border-radius: 14px;
    border: 2px solid rgba(0,0,0,.12);
    background: #0f172a; /* контрастный фон */
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  }
  .copyHeader{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom: 12px;
  }
  .copyTitle{
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .2px;
  }
  .copyBtns{
    display:flex;
    gap:10px;
    align-items:center;
  }
  .btnCopy{
    cursor:pointer;
    border: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #22c55e;
    color: #052e16;
    font-weight: 800;
    line-height: 1;
    transition: transform .08s ease, filter .12s ease;
  }
  .btnCopy:active{ transform: scale(.98); }
  .btnCopy:hover{ filter: brightness(1.05); }

  .btnSelect{
    cursor:pointer;
    border: 1px solid rgba(255,255,255,.18);
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: #e5e7eb;
    font-weight: 700;
    line-height: 1;
  }
  .copyHint{
    margin-top: 10px;
    font-size: 12.5px;
    color: rgba(229,231,235,.78);
  }

  .docFrame{
    background: #ffffff;
    color:#111827;
    border-radius: 12px;
    padding: 18px 18px;
    border: 1px solid rgba(0,0,0,.10);
    overflow: auto;
  }
  .docText{
    font-family: "Times New Roman", Times, serif;
    font-size: 14.5px;
    line-height: 1.45;
  }
  .docText .center{ text-align:center; }
  .docText .right{ text-align:right; }
  .docText .bold{ font-weight:700; }
  .docText h3{
    font-size: 15px;
    margin: 14px 0 6px;
  }
  .docText p{ margin: 8px 0; }
  .docText ul, .docText ol{ margin: 8px 0 8px 22px; }
  .docText li{ margin: 4px 0; }
  .monoNote{
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px dashed rgba(255,255,255,.22);
    color: rgba(229,231,235,.86);
    font-size: 12.5px;
  }
  .statusMsg{
    font-size: 12.5px;
    color: rgba(229,231,235,.85);
    min-width: 140px;
    text-align: right;
  }