
 /* Alinea el encabezado y el pie de página en el centro */
 .page-header {
  text-align: center;
}

/* Estilo personalizado para el encabezado de la página */
.page-header img {
  padding: 0.5rem 0;
}
/* estilos.css  responsive para pantallas pequeñas*/
@media (max-width: 768px) {
  .form-container {
    display: flex;
    flex-direction: column;
  }
  
  input, textarea {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
/*estilos para selecion 0 a 10 de radios*/
body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
}
.rating-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 20px auto;
}
.rating-label {
  padding: 10px;
  background: #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.rating-label:hover {
  transform: scale(1.1);
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + .rating-label {
  background: #4CAF50;
  color: white;
  font-weight: bold;
}
.face {
  font-size: 24px;
}
.face-sad {
  color: red;
}
.face-happy {
  color: green;
}
button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
button:hover {
  background: #0056b3;
}
.success {
  color: green;
}
.error {
  color: red;
}