/* claude-code plugin — fenêtre flottante + xterm host */
.cc-float-window {
  position: fixed;
  background: #0b0d12;
  color: #d8e0f0;
  border: 1px solid #1a1f2b;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: ui-monospace, Menlo, Consolas, monospace;
}
.cc-float-titlebar {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  background: linear-gradient(180deg, #141822 0%, #11141b 100%);
  border-bottom: 1px solid #1a1f2b;
  user-select: none;
  cursor: move;
}
.cc-float-title {
  font-size: 12px;
  font-weight: 600;
  color: #6fb8ff;
  letter-spacing: 0.3px;
  flex: 1;
}
.cc-float-body {
  flex: 1;
  overflow: hidden;
  background: #0b0d12;
  padding: 4px;
}
.cc-term-host {
  width: 100%;
  height: 100%;
  background: #0b0d12;
}
.cc-term-host .xterm,
.cc-term-host .xterm-viewport,
.cc-term-host .xterm-screen {
  background: #0b0d12 !important;
}
