

.w-full { width: 100%; }
.h-full { height: 100%; }

.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

.gap-6 { gap: 6px; }
.gap-8 { gap: 8px; }
.gap-20 { gap: 20px; }
.gap-28 { gap: 28px; }
.gap-30 { gap: 30px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }
.gap-50 { gap: 50px; }
.gap-60 { gap: 60px; }

.mr-4 { margin-right: 4px; }
.mr-6 { margin-right: 6px; }

.mt-28 { margin-top: 28px; }
