/* ===== UTILITY CLASSES ===== */
/* Small, single-purpose classes for common patterns */

/* ===== TEXT ALIGNMENT ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===== DISPLAY ===== */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-column { flex-direction: column; }
.flex-between { justify-content: space-between; }

.hidden { display: none; }
.visible { display: block; }

/* ===== SPACING ===== */
.gap-2 { gap: var(--spacing-small); }
.gap-4 { gap: var(--spacing-medium); }

/* ===== TRANSITIONS ===== */
.ui-fade { opacity: 1; transition: opacity 0.3s ease; }

