#overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

.overlay-window {
  position: fixed;
  top: 100px;
  left: 100px;
  width: 300px;
  height: 200px;
  background: #fff;
  border: 1px solid #aaa;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 150px;
  z-index: 1000;
}


.overlay-header {
  background: #f0f0f0;
  padding: 5px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overlay-controls button {
  background: none;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  cursor: pointer;
}

.overlay-content {
  padding: 10px;
  height: calc(100% - 30px);
  overflow-y: auto;
}

#docked-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 5px;
  padding: 5px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
}

.docked-tab {
  background: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}