body {
  font-family: "Poppins", sans-serif;
  background: #f9fafb;
  margin: 0;
  padding: 0;
  color: #222;
}

.tool-header {
  text-align: center;
  padding: 20px;
}

.tool-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.upload-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.preview-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.image-box, .text-box {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  width: 400px;
}

#previewImage {
  max-width: 100%;
  border-radius: 8px;
}

#extractedText {
  width: 100%;
  height: 250px;
  resize: none;
  font-size: 14px;
}

button {
  background: #0078ff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

button:hover {
  background: #005ec9;
}
