/* public/css/reset.css */

/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default body margin */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  background-color: #f9f9f9;
  color: #111;
}

/* Remove list styles on ul/ol */
ul, ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default border and background on images */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* Remove default form styles */
input, button, textarea, select {
  font: inherit;
  margin: 0;
}

/* Buttons */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}