.converter-box {
  max-width: 720px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.converter-box textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  resize: none;
}

.converter-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.converter-actions button {
  flex: 1;
  padding: 10px;
  border: none;
  background: #0073aa;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.converter-actions button:hover {
  background: #005177;
}

.result-box {
  margin-top: 15px;
  padding: 12px;
  background: #f8f8f8;
  border-radius: 8px;
}

#outputText, #kanjiOutput, #kanaOutput, #meaningOutput {
  font-size: 18px;
  font-weight: 500;
}

.hidden {
  display: none;
} 

.output-group {
  margin-bottom: 12px;
}

.output-group pre {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 16px;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 6px;
}

/* AUTOCOMPLETE */
#suggestions {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 5px;
  max-height: 150px;
  overflow-y: auto;
}

.suggest-item {
  padding: 8px;
  cursor: pointer;
}

.suggest-item:hover {
  background: #f0f0f0;
}