.ued-container {
  max-width: 600px;
  margin: 30px auto;
  background: #fdfdfd;
  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;
}

.ued-container h2 {
  margin-bottom: 15px;
}

textarea#ued-input,
textarea#ued-output {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin: 10px 0;
  resize: vertical;
}

.ued-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

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

.ued-buttons button:hover,
#ued-copy:hover {
  background: #005bb5;
}
