body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
}

.klara-container {
  position: fixed;
  top: 20px;
  left: 20px;
}

.klara-fixed {
  width: 160px;
}

.speech-bubble {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  margin-top: 10px;
  width: 260px;
  min-height: 60px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-size: 0.95rem;
}

.wizard-intro,
.wizard-results {
  margin-left: 240px;
  padding: 40px;
  max-width: 900px;
}

.role-select {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.role-select button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #005fa3;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
}

.role-select button:hover {
  background: #004777;
}

.loading {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

.no-results {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #444;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.result-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.result-content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.result-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
}

.btn-small {
  margin-top: 10px;
  align-self: flex-start;
  padding: 8px 14px;
  background: #0077cc;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-small:hover {
  background: #005fa3;
}
