.dtf-container {
  max-width: 700px;
  margin: 30px auto;
  background: #fff;
  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;
}

.dtf-container h2 {
  margin-bottom: 20px;
}

#dtf-input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

textarea#dtf-output {
  width: 100%;
  height: 60px;
  font-family: monospace;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none;
  margin-top: 10px;
}

.dtf-buttons {
  margin-bottom: 10px;
}

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

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