body {
  font-family: "Inter", sans-serif;
  background-color: #f9fafb;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  max-width: 800px;
  margin: 40px auto;
}

input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  width: 100%;
}

label {
  font-weight: 600;
  color: #333;
}

pre {
  background: #1f2937;
  color: #00ffcc;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 1rem;
}

/* Buttons */
.btn-generate {
  background: #2563eb;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-generate:hover {
  background: #1e40af;
}

.btn-clear {
  background: #e5e7eb;
  color: #111827;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-clear:hover {
  background: #d1d5db;
}

.btn-copy {
  background: #16a34a;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-copy:hover {
  background: #15803d;
}

/* Disclaimer */
.disclaimer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #dc2626;
  background-color: #f9fafb;
  border-top: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.05);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
