* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.contenedor, #contenedor {
  background-color: #fff;
  max-width: 960px;
  margin: 0 auto;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h2, h3, .titulo-infracciones, .texto {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 15px;
}

.logo-container,
#cabecera {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.logo-container img,
#logo {
  width: 90px;
  height: auto;
}

.botones button,
.botones input[type="submit"],
.botones input[type="reset"] {
  display: inline-block;
  background-color: #90CB41; /* Fallback */
/*background-color: var(--color-acento); /* Si está definido, lo sobrescribe */
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  visibility: visible;
  opacity: 1;
}


.botones button,
.botones input[type="submit"],
.botones input[type="reset"] {
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  flex: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#pie {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
