/* ==============================================
   DROP ZONE & HTML CONTENT STYLES
   Shared HTML display and drop zone styles
   ============================================== */

/* HTML Display */
.html-content {
  max-height: calc(100vh - 40px - 200px);
  overflow-y: auto;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  line-height: 1.8;
  user-select: text;
  cursor: text;
  transition: background 0.3s ease;
}

/* Light theme HTML content */
:root[data-theme="light"] .html-content {
  background: var(--html-content-bg, #ffffff);
  border: 1px solid var(--border);
}

.html-content.drag-over {
  background: rgba(106, 163, 255, 0.1);
  border-color: var(--accent);
}

.html-content * {
  max-width: 100%;
}

/* Empty State */
.empty-state {
  text-align: center;
  color: var(--sub);
  padding: 60px 20px;
}

.empty-state h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 500;
}

/* Upload Links */
#upload-link {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

#upload-link:hover {
  text-decoration: underline;
}
