/* FONA İşitme Cihazları - CSS Reset */
/* Basit, opinionated reset - mobil öncelikli */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Kullanıcıya odak görünürlüğü bırak */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

