/* Form Styles */

textarea {
  width: 100%;
  min-height: 300px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  line-height: 1.6;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

textarea:focus {
  outline: none;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
}

.content-editor {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  border: none;
  outline: none;
  resize: none;
  font-family: "SF Mono", "Monaco", "Droid Sans Mono", "Source Code Pro", monospace;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  background-color: transparent;
  box-shadow: none;
}

.content-editor:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  text-decoration: none;

}

.btn:hover {
  background-color: #0069d9;

}

.btn-danger {
  background-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
}

.actions {
  margin: 1.5rem 0;
  display: flex;
  gap: 10px;
}
