/* Copy link popover */
.copy-popover {
    position: fixed;
    z-index: 2000;
    max-width: min(560px, 92vw);
    background: #fff;
    color: #212529;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .5rem;
    box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.15);
    padding: .9rem 1rem 1rem 1rem;
  }
  
  .copy-popover .copy-close {
    position: absolute;
    top: .25rem;
    right: .5rem;
    border: 0;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
    color: #6c757d;
    cursor: pointer;
  }
  
  .copy-popover .copy-label {
    font-weight: 600;
    margin-bottom: .5rem;
  }
  
  .copy-popover .copy-row {
    display: flex;
    gap: .5rem;
  }
  
  .copy-popover .copy-input {
    flex: 1 1 auto;
    min-width: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    padding: .45rem .6rem;
  }
  
  .copy-popover .copy-action {
    white-space: nowrap;
  }
  
  .copy-popover .copy-hint {
    margin-top: .25rem;
  }
  