/* industry-selection.css */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #222;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
main {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2rem 3rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.industry-options {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}
button {
  flex: 1 1 45%;
  margin: 0 0.5rem;
  padding: 1rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  background: #0078d4;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
button:focus, button:hover {
  background: #005fa3;
  outline: 2px solid #005fa3;
}
#loading, #error-message {
  margin-top: 1rem;
  font-size: 1rem;
}
.hidden {
  display: none;
}
