
.border{
    border:2px solid rgb(16, 1, 1);
    margin:3px;
}
.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.item-center{
    align-items: center;
}
.bg-black{
    background-color: black;
color:white;
}
.invert{
    filter: invert(1);
}
.bg-grey{
    background-color:#121212;}
.rounded{
border-radius: 7px;
    }
.m1{
    margin:5px;

}
p1{
    padding: 10px;
}
/* Scrollbar for WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e; /* Dark track background */
}

::-webkit-scrollbar-thumb {
  background-color: #555;    /* Scrollbar handle */
  border-radius: 6px;
  border: 3px solid #1e1e1e; /* Padding around the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #777; /* Lighter on hover */
}

/* For Firefox */
* {
  scrollbar-width: 30px;
  scrollbar-color: #555 #1e1e1e;
}
