/* ===================================================
   RESET BÁSICO para Bibliobyte
   ---------------------------------------------------
   Este archivo elimina inconsistencias entre navegadores
   y establece una base visual limpia y controlada.
   =================================================== */


/* -------------------------------------
   1. Reset general y box-sizing global
   ------------------------------------- */
* {
  padding: 0;
  box-sizing: border-box;
}


/* -------------------------------------
   2. Tipografía y colores base
   -------------------------------------
   - Tipografía legible y profesional
   - Colores suaves sobre fondo claro
   ------------------------------------- */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f8f5ff;
  -moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;

}


/* -------------------------------------
   3. Listas sin decoración por defecto
   ------------------------------------- */
ul,
ol {
  list-style: none;
}


/* -------------------------------------
   4. Enlaces sin subrayado inicial
   ------------------------------------- */
a {
  text-decoration: none;
  color: inherit;
}


/* -------------------------------------
   5. Imágenes responsivas por defecto
   ------------------------------------- */
img {
  max-width: 100%;
  display: block;
}


/* -------------------------------------
   6. Formularios sin estilos molestos
   -------------------------------------
   - Inherit para mantener consistencia
   - Sin bordes ni fondos por defecto
   ------------------------------------- */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}


/* -------------------------------------
   7. Botones siempre clicables
   ------------------------------------- */
button {
  cursor: pointer;
}


/* -------------------------------------
   8. Tablas: estructura sin separación
   ------------------------------------- */
table {
  border-collapse: collapse;
  width: 100%;
}