body {
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

h1 {
  color: #ffffff;
  margin-bottom: 2rem;
}

.paragraph-box {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
  position: relative;
}

.template-text {
  margin-bottom: 15px;
}

.actions {
  display: flex;
  gap: 10px;
}

button {
  background: #219653;
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

button.copy {
  background: #2d9cdb;
}

button.edit {
  background: #f2994a;
}

button.save {
  background: #27ae60;
}

textarea {
  width: 100%;
  min-height: 100px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #0f0f0f;
  color: #e0e0e0;
  padding: 10px;
  font-family: inherit;
  font-size: 1rem;
}
