.flex {
  display: flex;
}

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

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

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

.invert {
  filter: invert(1);
}

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

.rounded {
  border-radius: 8px;
}

.m1 {
  margin: 5px;
}

.p1 {
  padding: 10px;
}

/* Additional utility classes */
.text-white {
  color: white;
}

.text-grey {
  color: #b3b3b3;
}

.text-small {
  font-size: 12px;
}

.text-bold {
  font-weight: bold;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.cursor-pointer {
  cursor: pointer;
}

.transition {
  transition: all 0.2s ease;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.object-cover {
  object-fit: cover;
}

.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}