.border{
    border: 2px solid red;
    margin: 10px;
}

.flex{
    display: flex;
}

.justify-center{
    justify-content: center;
}

.align-center{
    align-items: center;
}

.bg-black{
    background-color: #000000;
    color: white;

}
.bg-grey-1{
        background-color: #121212;


}
.bg-grey-2{
    background-color:#1f1f1f1f ;
}
.bg-grey-3{
    background-color: #202020;
}
.invert{
    filter: invert(1);
}
.m-1{
    margin: 7px;
}
.rounded{
    border-radius: 10px;
}
.p-1{
    padding: 12px;
}

/* Dark theme scrollbar styling for WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;  /* Dark background */
}

::-webkit-scrollbar-thumb {
  background-color: #555;    /* Scroll thumb color */
  border-radius: 10px;
  border: 2px solid #1e1e1e; /* Match track for smooth look */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}
