.drop-zone {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
  cursor: pointer;
  color: #888;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: #185fa5;
  background: #f0f6fc;
}

.editor-area {
  margin-top: 24px;
}

.file-info-line {
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
}

.action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.action-row button {
  padding: 9px 18px;
  background: white;
  color: #185fa5;
  border: 1px solid #185fa5;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.action-row button:hover {
  background: #f0f6fc;
}

.status-msg {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.text-output {
  padding: 14px;
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  min-height: 200px;
  max-height: 500px;
  overflow-y: auto;
  font-family: monospace;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-word;
}