/* reset.css - by ChatGPT */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Tajawal', sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Tajawal', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: transparent;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

address {
  font-style: normal;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1rem 0;
}

/* remove spinner arrows for number inputs */
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* General Accessibility */
:focus {
  outline: 2px solid #00f;
  outline-offset: 2px;
}

::selection {
  background-color: #ccc;
  color: #000;
}

::-webkit-scrollbar {
  width: 10px !important;
  background-color: #fcfcfc;
}::-webkit-scrollbar-thumb {
  background-color: rgb(15, 15, 15);
}