.border{
    border: 2px solid  red;
    margin: 3px;
}

.flex{
    display: flex;
}

.justify-center{
    justify-content: center;
}

.items-center{
    align-items: center;
}

.bg-black{
    background-color: black;
    color: white;
}

.invert{
    filter: invert(1);
}

.bg-grey{
    background-color: #121212;
}

.rounded{
    border-radius: 7px;
}

.m-1{
    margin: 5px;
}

.p-1{
    padding: 10px;
}
/* WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e; /* Dark background */
}

::-webkit-scrollbar-thumb {
  background-color: #555;  /* Thumb color */
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #888; /* On hover */
}

/* Firefox */
html {
  scrollbar-width: thin;              /* Options: auto | thin | none */
  scrollbar-color: #555 #1e1e1e;      /* thumb color | track color */
}
