#cpn-generator-tool {
  background-color: #FAF7F0;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.cpn-generator-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cpn-input-box, .cpn-output-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cpn-input-box label, .cpn-output-box label {
  font-size: 1rem;
  color: #333;
}

.cpn-input-box input, .cpn-output-box textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 48px; /* Set fixed height */
  box-sizing: border-box;
  width: 100%; /* Ensures consistent width */
}

.cpn-output-box textarea {
  resize: none; /* Disable resizing for consistent design */
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  min-height: 48px; /* Same height as input and textarea */
  width: 100%; /* Matches width with input fields */
  box-sizing: border-box;
}

button:hover {
  background-color: #45a049;
}

@media (max-width: 600px) {
  .cpn-generator-container {
    flex-direction: column;
  }
}