.flex {
  display: flex;
}

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

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

.border {
  border: 2px solid white;
  margin: 3px;
}

.bg-black {
  background-color: black;
  color: white;
}

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

.rounded {
  border-radius: 7px;
}

.m-1 {
  margin: 5px;
}

.p-1 {
  padding: 10px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(40, 40, 40, 0.7); /* dark and slightly transparent */
  border-radius: 0px; /* square corners */
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(60, 60, 60, 0.85); /* slightly lighter on hover */
}

::-webkit-scrollbar-button {
  display: none;
}
