/* === Text Selection Popup === */

.text-selection-popup {
  position: absolute;
  z-index: 10001;
  width: 340px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.text-selection-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #f3f4f6;
  background: #f8fafc;
  border-radius: 10px 10px 0 0;
}

.text-selection-popup-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4f46e5;
}

.text-selection-popup-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #9ca3af;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.text-selection-popup-close:hover {
  color: #6b7280;
}

.text-selection-popup-body {
  padding: 12px 14px;
}

.text-selection-popup-context {
  margin-bottom: 10px;
}

.text-selection-popup-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
  display: block;
}

.text-selection-popup-value {
  font-size: 0.8125rem;
  color: #1f2937;
  background: #f9fafb;
  padding: 6px 8px;
  border-radius: 5px;
  border: 1px solid #f3f4f6;
  max-height: 3.6em;
  overflow: hidden;
  line-height: 1.4;
  word-break: break-all;
}

.text-selection-popup-element {
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.6875rem;
  color: #7c3aed;
}

.text-selection-popup-input {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.8125rem;
  line-height: 1.4;
  resize: vertical;
  margin-top: 4px;
  margin-bottom: 10px;
  font-family: inherit;
  transition: border-color 0.15s;
}

.text-selection-popup-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.15);
}

.text-selection-popup-input::placeholder {
  color: #9ca3af;
}

.text-selection-popup-page {
  font-size: 0.75rem;
  color: #6366f1;
}

.text-selection-popup-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-selection-popup-submit {
  flex: 1;
  padding: 8px 0;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.text-selection-popup-submit:hover {
  background: #4338ca;
}

.text-selection-popup-submit:disabled {
  background: #a5b4fc;
  cursor: not-allowed;
}

.text-selection-popup-hint {
  font-size: 0.6875rem;
  color: #9ca3af;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .text-selection-popup {
    width: calc(100vw - 16px);
    max-width: 340px;
  }
}
