html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Mulish, system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--color-addiditional-background);
}

body {
  align-items: center;
}
:root {
  --safe-area-bottom: env(safe-area-inset-bottom, 0);
}


#root {
  flex: 1;
  height: 100%;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--color-addiditional-background);
  padding-bottom: var(--safe-area-bottom);
}

a {
  text-decoration: none;
  color: var(--color-brand);
}

p {
  margin: 0;
}

input:-internal-autofill-selected {
  background-color: transparent !important;
}

.cursor-pointer {
  cursor: pointer;
}

*::-webkit-scrollbar {
  background-color: transparent;
  width: 4px;
  height: 8px;
}

/* background of the scrollbar except button or resizer */
*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-track:horizontal {
  background-color: transparent;
}

/* scrollbar itself */
*::-webkit-scrollbar-thumb {
  background-color: var(--color-brand-secondary);
  border-radius: 2px;
}

/* set button(top and bottom of the scrollbar) */
*::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar:horizontal {
  height: 4px;
  background-color: red;
}
::-webkit-scrollbar-thumb:horizontal {
  background-color: var(--color-brand-secondary);
  border-radius: 10px;
}
