.border {
    border: 2px solid rgb(255, 0, 0);
    margin: 3px;
}

.flex {
    display: flex;
}

.justify {
    justify-content: center;
}

.items {
    align-items: center;
}
.bg-black {
    background-color: black;
    color: white;
}
.rounded {
    border-radius: 7px;
}
.p-1 {
    padding: 10px;
}
.m-1{
    margin: 5px;
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #333; /* Dark color for the thumb */
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #222; /* Dark color for the track */
  }