
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fb;
  margin: 0;
  padding: 2rem;
  color: #333;
}

.container {
  max-width: 900px;
  margin: auto;
}

.title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.prompt-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-radius: 12px;
  overflow: hidden;
}

.prompt-table th, .prompt-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.prompt-table th {
  background-color: #f0f2f5;
  font-weight: 600;
}

.copy-btn {
  background-color: #eef;
  border: 1px solid #ccd;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1rem;
}

.copy-btn:hover {
  background-color: #dde;
}


.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, bottom 0.4s ease;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  bottom: 3rem;
}

#prompt-search {
  max-width: 600px;
  margin: auto;
  display: block;
}

.modal-body pre {
  background-color: #f8f9fa;
  padding: 12px;
  border-radius: 6px;
  font-family: monospace;
  white-space: pre-wrap;
}

.modal-dialog.modal-lg {
  margin-top: 80px;
}
