body {
    font-family: 'Arial', sans-serif; /* Tipografía moderna */
    background-color: #f4f4f4; /* Fondo gris claro */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Para centrar verticalmente en la pantalla */
}

.highlight {
  color: var(--secondary-color);
  font-weight: 600;
}

.container {
    background-color: #fff; /* Fondo blanco para el contenedor del formulario */
    padding: 30px;
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Sombra suave */
    width: 85%; /* Ancho del contenedor */
    max-width: 1000px; /* Ancho máximo para pantallas grandes */
}

.logo-container {
  max-width: 100px;
  margin: 0 auto 1rem;
}

.header-content h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.header-content h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-color);
}

.instructions {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.instructions h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.scale-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.scale-list li {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.example {
  background: #f0f9ff;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border: 1px solid #bae6fd;
}

.example h4 {
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
}

h1 {
  color: #333; /* Color de texto principal */
  text-align: center;
  margin-bottom: 20px;
}

h2 {
    color: #333; /* Color de texto principal */
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    color: #555; /* Color de texto secundario */
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal; /* Peso de fuente normal para el subtítulo */
}

p {
    color: #777; /* Color de texto para la descripción */
    line-height: 1.2; /* Espaciado entre líneas para mejor legibilidad */
    margin-bottom: 30px;
    text-align: justify; /* Justificar el texto para una apariencia más formal */
}

form {
    display: flex;
    flex-direction: column; /* Alinear los elementos del formulario en columna */
}

label {
    margin-bottom: 8px;
    font-weight: normal; /* Etiquetas en negrita para destacar */
    color: #333;
    font-size: 12px;
}

input[type="text"],
select {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd; /* Borde sutil para los campos de entrada */
    border-radius: 5px; /* Bordes redondeados para los campos de entrada */
    font-size: 11px; /* Tamaño de fuente legible */
    font-family: 'Arial', sans-serif; /* Asegurar la misma tipografía */
}

input[type="text"]:focus,
select:focus {
    border-color: #007bff; /* Cambiar el color del borde al enfocar (azul primario) */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Sombra al enfocar para destacar */
    outline: none; /* Eliminar el borde de enfoque predeterminado del navegador */
}

select {
    appearance: none; /* Eliminar la apariencia predeterminada del select en algunos navegadores */
    -webkit-appearance: none; /* Para navegadores basados en WebKit */
    -moz-appearance: none; /* Para Firefox */
    background-image: url('data:image/svg+xml;utf8,<svg fill="currentColor" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); /* Icono de flecha desplegable */
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 5px;
    padding-right: 30px; /* Espacio para la flecha desplegable */
}

/* Estilos adicionales para navegadores específicos (si es necesario) */
select::-ms-expand {
    display: none; /* Ocultar la flecha desplegable predeterminada en IE/Edge */
}

.radio-group label {
  font-size: smaller; /* o 12px, o 0.8em, etc. */
}

button[type="submit"] {
    background-color: #007bff; /* Azul primario (puedes cambiarlo) */
    color: white; /* Texto blanco */
    padding: 12px 24px; /* Relleno vertical y horizontal */
    border: none; /* Sin borde */
    border-radius: 5px; /* Bordes redondeados */
    cursor: pointer; /* Cursor de "mano" al pasar por encima */
    font-size: 16px; /* Tamaño de fuente legible */
    font-family: 'Arial', sans-serif; /* Misma tipografía que el formulario */
    transition: background-color 0.3s ease; /* Transición suave para el hover */
}

button[type="submit"]:hover {
    background-color: #0056b3; /* Azul más oscuro al pasar el ratón */
}

button[type="submit"]:focus {
    outline: none; /* Elimina el borde de enfoque predeterminado del navegador */
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5); /* Sombra de enfoque sutil */
}

button[type="submit"]:active {
    background-color: #004085; /* Azul aún más oscuro al hacer clic */
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.7); /* Sombra activa más fuerte */
}

td {
  font-size: 11px;
}

th {
  margin: : 20px;
}
