@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

.font-space-grotesk {
  font-family: 'Space Grotesk', sans-serif;
}

.font-fira-mono {
  font-family: 'Fira Mono', sans-serif;
}

.navbar-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #56565b #28282d;
}

.navbar-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.navbar-scrollbar::-webkit-scrollbar-track {
  background: #28282d;
}

.navbar-scrollbar::-webkit-scrollbar-thumb {
  background: #56565b;
  border-radius: 4px;
}

.navbar-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #6a6a70;
}

body {
  scrollbar-width: thin;
  scrollbar-color: #56565b #28282d;
}

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body::-webkit-scrollbar-track {
  background: #28282d;
}

body::-webkit-scrollbar-thumb {
  background: #56565b;
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #6a6a70;
}

.dex-table tr,
.dex-table th,
.dex-table td,
.filters-container {
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

.dex-table tr::-webkit-scrollbar,
.dex-table th::-webkit-scrollbar,
.dex-table td::-webkit-scrollbar,
.filters-container::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

.dex-table tr::-webkit-scrollbar-track,
.dex-table th::-webkit-scrollbar-track,
.dex-table td::-webkit-scrollbar-track,
.filters-container::-webkit-scrollbar-track {
  background: transparent;
}

.dex-table tr::-webkit-scrollbar-thumb,
.dex-table th::-webkit-scrollbar-thumb,
.dex-table td::-webkit-scrollbar-thumb,
.filters-container::-webkit-scrollbar-thumb {
  background: transparent;
}