@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html {
  margin: 0px;
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  /* Asegurar que el scroll funcione en ambas direcciones */
  -webkit-overflow-scrolling: touch;
  /* Ocultar barra de scroll pero mantener funcionalidad */
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

/* Ocultar scrollbar en WebKit (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}