.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.align-center{
    align-items: center;
}
.bg-black{
    background-color: black;
    color: white;
}
.invert{
    filter: invert(1);
}
.bg-grey{
    background-color: #121212;
}
.rounded{
    border-radius: 8px;
}
.m-1{
    margin: 5px;
}
.p-1{
    padding: 10px;
}
/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background-color: black; /* dark blackish background */
}

::-webkit-scrollbar-thumb {
  background-color: black; /* dark gray/blackish thumb */
  border-radius: 6px;
  border: 3px solid black; /* space around thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #0b0b0b; /* lighter on hover */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #333333 #121212; /* thumb and track colors */
}
.nowrap{
    white-space: nowrap;
}
