/* Dock ElleGraci chat bottom-right, smaller + translucent */
#egc-container{
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  height: 520px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  z-index: 9999;
}
.egc-header{padding:12px 16px;background:rgba(248,250,252,0.9);border-bottom:1px solid #e5e7eb;display:flex;align-items:center;gap:8px}
.egc-title{font-size:16px;font-weight:600;color:#0f172a}
.egc-version{font-size:12px;color:#6b7280;margin-left:auto}
.egc-chatlog{height:380px;overflow:auto;padding:12px;background:rgba(251,251,252,0.6)}
.egc-msg{display:flex;gap:10px;margin-bottom:10px}
.egc-msg .avatar{width:32px;height:32px;border-radius:9999px;background:#d1d5db;flex-shrink:0}
.egc-msg .bubble{background:rgba(255,255,255,0.92);border:1px solid #e5e7eb;border-radius:12px;padding:10px;max-width:80%;color:#0f172a}
.egc-msg.user .bubble{background:rgba(238,242,255,0.92);border-color:#c7d2fe}
.egc-controls{display:flex;gap:8px;padding:12px;border-top:1px solid #e5e7eb;background:rgba(255,255,255,0.85)}
.egc-input{flex:1;padding:10px;border:1px solid #e5e7eb;border-radius:10px}
.egc-btn{padding:8px 10px;border:1px solid #e5e7eb;background:#111827;color:#fff;border-radius:10px;cursor:pointer}
.egc-btn.egc-secondary{background:#374151}
.egc-btn.egc-accent{background:#2563eb}
.egc-note{padding:8px 12px;font-size:12px;color:#334155}

/* Minimize button */
.egc-header .egc-min{
  border:none;background:transparent;font-size:18px;line-height:1;cursor:pointer;color:#111827;opacity:.8
}
.egc-header .egc-min:hover{opacity:1}

/* Hidden state */
#egc-container.egc-hidden{transform:scale(.98);opacity:0;pointer-events:none;visibility:hidden;transition:opacity .15s ease, transform .15s ease, visibility 0s .15s}

/* Launcher bubble */
#egc-launcher{
  position:fixed; right:20px; bottom: calc(20px + env(safe-area-inset-bottom));
  width:52px; height:52px; border-radius:50%;
  background: rgba(17,24,39,0.9); color:#fff;
  display:none; align-items:center; justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,.25); cursor:pointer; z-index:10000;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
#egc-launcher span{font-size:22px; line-height:1}

/* Mobile */
@media (max-width:768px){
  #egc-container{
    left:12px; right:12px; bottom: calc(12px + env(safe-area-inset-bottom));
    max-width:none; height:70vh; border-radius:16px;
  }
  .egc-chatlog{ height: calc(70vh - 140px); }
  #egc-launcher{ right:16px; bottom: calc(16px + env(safe-area-inset-bottom)); width:56px; height:56px; }
}
