/* General */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  padding: 10px;
}

/* Formularios */
input, button, select, textarea {
  font-size: 18px !important;
}

.form-control {
  border-radius: 8px;
  padding: 12px;
}

/* Botones grandes y legibles */
.btn-lg {
  font-size: 20px;
  padding: 14px;
  border-radius: 10px;
}

/* Encabezado de pantallas */
h2, h3, h4 {
  font-weight: bold;
  margin-bottom: 20px;
}

/* Centrado para móviles */
.text-center {
  text-align: center;
}

/* Footer */
footer {
  font-size: 14px;
  color: #999;
}

/* Elementos importantes */
.highlight {
  background-color: #ffffcc;
  padding: 5px;
  border-radius: 5px;
}

/* Modo oscuro opcional (si lo necesitas en el futuro) */
/*
@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: #f1f1f1;
  }

  .form-control {
    background-color: #2c2c2c;
    color: #fff;
    border-color: #444;
  }

  .btn {
    background-color: #444;
    color: #fff;
  }
}
*/
