/* Style minimaliste pour le test politique */

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  border-radius: 4px;
}

h1 {
  font-size: 1.8rem;
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
}

.questions {
  list-style: none;
  padding: 0;
}

.questions li {
  margin-bottom: 1.2rem;
}

.questions p {
  margin: 0 0 0.5rem 0;
  font-weight: bold;
}

label {
  display: inline-block;
  margin-right: 0.8rem;
  margin-bottom: 0.3rem;
  cursor: pointer;
}

.submit-btn {
  display: block;
  margin: 2rem auto;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background-color: #007ACC;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #005FA3;
}

.results {
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid #e0e0e0;
}

.results h2 {
  margin-top: 0;
}

.results table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.results th, .results td {
  border: 1px solid #ddd;
  padding: 0.5rem;
  text-align: left;
}

.results th {
  background-color: #f0f0f0;
}