/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: #1c1d21;
  border-radius: 5px;
}

.dark ::-webkit-scrollbar-track {
  background: rgb(12 10 9);
}

.dark ::-webkit-scrollbar-thumb {
  background: white;
}

/* Text Selection */
::selection {
  background-color: black;
  color: white;
}

.dark ::selection {
  background-color: white;
  color: black;
}

/* Heading wrapper utilities */
.heading-wrapper > h1,
.heading-wrapper > h2,
.heading-wrapper > h3,
.heading-wrapper > h4 {
  margin-top: 0;
  line-height: 1.2;
}
