/* Minimal, clean styling for the Davidese Dictionary */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #f6f8fa;
  color: #1f2937;
  margin: 0;
}
.container {
  max-width: 900px;
  margin: 36px auto;
  padding: 0 20px;
}
.search-hero {
  text-align: center;
  margin-bottom: 20px;
}
.search-form {
  display: inline-flex;
  gap: 8px;
  margin-top: 8px;
}
.search-input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  min-width: 360px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.search-button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}
.results {
  margin-top: 18px;
}
.result-card {
  background: white;
  border: 1px solid #e6e9ef;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(12, 24, 40, 0.04);
}
.result-card.small {
  padding: 12px;
}
.result-title {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
}
.phonetics {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.phonetic-text { color: #374151; }
.part-of-speech { color: #6b7280; margin: 8px 0 6px 0; }
.definition { margin-bottom: 6px; }
.example { color: #6b7280; }
.admin-add .btn {
  display: inline-block;
  background: #10b981;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
}
.empty { color: #6b7280; }
.btn { text-decoration: none; }
