/* Tool Container Styles */
#tool-container {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #333;
}

/* Header Styles */
#tool-container h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #444;
}

/* Input and Output Sections */
#tool-container .input-section,
#tool-container .output-section {
  margin-bottom: 20px;
}

/* Labels */
#tool-container label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

/* Select Dropdown */
#tool-container select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #333;
}

/* Textarea */
#tool-container textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 5px;
  resize: vertical;
  background-color: #f9f9f9;
  color: #333;
}

/* Button */
#generateButton {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Button Hover */
#generateButton:hover {
  background-color: #0056b3;
}

/* Output Section Styles */
#tool-container .output-section h2 {
  font-size: 20px;
  color: #444;
  margin-bottom: 10px;
}

#tool-container textarea[readonly] {
  background-color: #f4f4f9;
  color: #666;
}

/* Copy and Clear Button Container */
.button-container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Copy and Clear Buttons */
#copyButton, #clearButton {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#copyButton:hover, #clearButton:hover {
  background-color: #0056b3;
}

/* Placeholder Text */
#outputText::placeholder {
  color: #888;
}

/* Input Row Styles */
.input-row {
  display: flex;
  justify-content: space-between;
}

.input-row div {
  width: 30%;
}

/* Clear Button Visibility */
#clearButton {
  display: none;
}
