
#gc-panel{position:fixed;bottom:20px;left:20px;right:auto;z-index:98000;width:300px;display:none;
  background:var(--bg2);border:1px solid var(--border2);border-radius:16px;
  box-shadow:0 12px 40px rgba(0,0,0,.38);overflow:hidden;
  animation:gcPanIn .3s cubic-bezier(.34,1.56,.64,1);user-select:none}
@keyframes gcPanIn{from{opacity:0;transform:translateY(20px) scale(.96)}to{opacity:1;transform:none}}
#gc-drag{display:flex;align-items:center;justify-content:space-between;padding:10px 14px 10px 14px;
  background:var(--bg3);border-bottom:1px solid var(--border);cursor:grab;gap:8px}
#gc-drag:active{cursor:grabbing}
.gc-drag-title{font-size:12px;font-weight:700;color:var(--tx2);display:flex;align-items:center;gap:6px}
.gc-drag-ico{display:flex;gap:2px;flex-direction:column;opacity:.5}
.gc-drag-ico span{display:block;width:16px;height:2px;background:var(--tx3);border-radius:1px}
#gc-close-all{width:22px;height:22px;border-radius:50%;background:transparent;border:none;
  color:var(--tx3);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:14px;line-height:1}
#gc-close-all:hover{background:var(--hover);color:var(--tx)}
#gc-list{max-height:360px;overflow-y:auto;display:flex;flex-direction:column}
.gc-row{display:flex;align-items:center;gap:10px;padding:10px 14px;border-bottom:1px solid var(--border);position:relative}
.gc-row:last-child{border-bottom:none}
.gc-row-av{width:36px;height:36px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;
  justify-content:center;font-size:13px;font-weight:700;color:#fff;position:relative}
.gc-row-av.gc-spin-ring::after{content:'';position:absolute;inset:-3px;border-radius:50%;
  border:2.5px solid transparent;border-top-color:var(--accent);animation:gcSpin .8s linear infinite}
@keyframes gcSpin{to{transform:rotate(360deg)}}
.gc-row-info{flex:1;min-width:0}
.gc-row-name{font-size:12px;font-weight:700;color:var(--tx);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.gc-row-st{font-size:11px;color:var(--tx3);margin-top:2px}
.gc-row-bar{height:3px;background:var(--border);border-radius:2px;overflow:hidden;margin-top:5px}
.gc-row-bar-fill{height:100%;border-radius:2px;background:var(--accent);transition:width .7s ease}
.gc-row-bar-fill.done{background:var(--green,#22c55e)}
.gc-row-bar-fill.fail{background:#ef4444}
.gc-row-pct{font-size:11px;font-weight:700;color:var(--tx3);flex-shrink:0;min-width:30px;text-align:right}
.gc-row-x{width:20px;height:20px;border-radius:50%;background:transparent;border:none;
  color:var(--tx3);cursor:pointer;display:flex;align-items:center;justify-content:center;
  font-size:13px;flex-shrink:0;opacity:0;transition:opacity .15s}
.gc-row:hover .gc-row-x{opacity:1}
.gc-row-x:hover{background:var(--hover);color:var(--tx)}
