.border{
    border: 2px solid red;
    margin: 3px;
}

.flex{
    display: flex;
}

.justify-center{
    justify-content: center;
}
.align-item{
    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;
}






/* For WebKit browsers (e.g., Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #333;   /* Dark thumb */
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #444;   /* Slightly lighter on hover */
}

::-webkit-scrollbar-track {
  background-color: #222;   /* Dark track */
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #333 #222;  /* thumb color, track color */
}

