/* Link Editor Tooltip */
.link-editor-tooltip {
  position: absolute;
  z-index: 10000;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #d5d5d7;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 300px;
  font-family: 'Golos Text', -apple-system, sans-serif;
  color: #333;
}

.link-editor-tooltip label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-bottom: -4px;
}

.input-with-button {
  display: flex;
  gap: 8px;
  align-items: center;
}

.link-editor-tooltip input {
  flex: 1;
  margin: 0 !important;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.link-editor-tooltip input:focus {
  border-color: #1367ff;
  outline: none;
}

.link-editor-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.link-editor-actions button {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

#linkEditorSave {
  background: #1367ff;
  color: white;
}

#linkEditorSave:hover {
  background: #004ecc;
}

#linkEditorUnlink {
  background: #f0f0f0;
  color: #333;
}

#linkEditorUnlink:hover {
  background: #e0e0e0;
  color: #d32f2f;
}

.todo-text a {
  color: #1367ff;
  text-decoration: underline;
  cursor: pointer;
}

.todo-text a:hover {
  color: #004ecc;
}/* Link Editor Tooltip Additions */
.icon-btn {
    padding: 8px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    width: 36px;
    height: 36px;
}

.icon-btn:hover {
    background: #f0f0f0;
    color: #1367ff;
    border-color: #1367ff;
}

.icon-btn svg {
    width: 16px;
    height: 16px;
}