.jf-container {
  max-width: 700px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.jf-container h2 {
  margin-bottom: 20px;
}

textarea#jf-input,
textarea#jf-output {
  width: 100%;
  height: 200px;
  font-family: monospace;
  font-size: 0.95rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  resize: vertical;
}

.jf-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.jf-buttons button {
  padding: 10px 15px;
  font-size: 1rem;
  background: #0073e6;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.jf-buttons button:hover {
  background: #005bb5;
}

#jf-error {
  color: red;
  margin-top: 10px;
}
