.border{
/* border: 2px solid red   ; */

}
.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: #1f1f1f;
}

.rounded{
    border-radius: 8px;
}

.m1{
    margin: 5px;
}

/* Apply this to the :root or html/body tag */
html {
  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: #4a4a4a #1e1e1e;
}

/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;  /* Width of the vertical scrollbar */
  height: 8px; /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #1e1e1e; /* The background of the track */
}

::-webkit-scrollbar-thumb {
  background-color: #4a4a4a; /* The color of the scroll handle */
  border-radius: 20px;      /* Rounded corners */
  border: 2px solid #1e1e1e; /* Creates padding around the handle */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6a6a6a; /* Handle color on hover */
}