.code-container {
  position: relative;
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

pre {
  margin: 0;
  overflow-x: auto;
  font-family: monospace;
}

.btn-clipboard {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  border: none;
  border-radius: 0.25rem;
  background-color: #e9ecef;
  cursor: pointer;
}

.btn-clipboard:hover {
  background-color: #dee2e6;
}

.success-feedback {
  color: #28a745;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.success-feedback.show {
  opacity: 1;
}