.tool-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.tool-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-wrapper {
  position: relative;
  width: 48%;
}

textarea {
  width: 100%;
  height: 250px;
  padding: 15px;
  font-size: 16px;
  resize: none;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea:focus {
  outline: 2px solid #f03e3e;
}

#output-text {
  width: 48%;
  background-color: #f9f9f9;
}

.action-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 8px 16px;
  background-color: #f03e3e;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.action-btn:hover {
  background-color: #d23333;
}
