body,
html {
  font-family: "Roboto", sans-serif;
  background-color: #f4f4f7;
  padding: 20px;
  overflow-y: auto;
}

.container {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #0056b3;
}

.template-item {
  background: #f8f9fa;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.template-title {
  font-size: 18px;
  font-weight: bold;
}

.template-detail {
  margin-top: 5px;
  font-size: 16px;
}

.template-author {
  font-style: italic;
  font-size: 14px;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

.draggable {
  padding: 5px 10px;
  margin: 5px;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease-in-out;
}

.draggable:hover {
  background-color: #0056eb;
}

.textarea-droppable {
  transition: border 0.3s ease-in-out;
}

.textarea-droppable:focus {
  border: 2px dashed #007bff;
}
