.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.min-h-0 {
  min-height: 0;
}
.h-full {
  height: 100%;
}
.w-full {
  width: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.overflow-y-auto {
  overflow-y: auto;
}

.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}

.text-sm {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.75rem;
}
.font-mono {
  font-family: "JetBrains Mono", monospace;
}
.uppercase {
  text-transform: uppercase;
}
.border {
  border-width: 1px;
  border-style: solid;
}

.hidden {
  display: none;
}

.pfp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  color: var(--white-color);
}

.icon-spin {
  animation: icon-spin 0.9s linear infinite;
}
@keyframes icon-spin {
  to { transform: rotate(360deg); }
}
