.aqua-window {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-width: 300px;
  position: absolute;
  overflow: hidden;
}

.window-titlebar {
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  cursor: grab;
  border-radius: 12px 12px 0 0;
  background: rgba(200, 200, 200, 0.1);
  -webkit-app-region: drag;
}

.window-titlebar:active {
  cursor: grabbing;
}

.window-controls {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  -webkit-app-region: no-drag;
}

.control {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.red {
  background: #ff5f57;
}

.yellow {
  background: #ffbd2e;
}

.green {
  background: #27c93f;
}

.window-content {
  margin-top: 30px;
}


.resize-handle {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 15px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: se-resize;
  border-radius: 3px;
}

.editable {
  border: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 5px;
  margin: -5px;
  outline: none;
}

.aqua-text.editable {
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
    'Helvetica Neue', sans-serif;
  color: #1d1d1f;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}