/* Spacing Utility Classes */
/* Extracted from inline styles across PHP files */

/* Height Spacing Utilities */
.spacing-xs { height: 10px; }
.spacing-sm { height: 20px; }
.spacing-md { height: 32px; }
.spacing-lg { height: 50px; }
.spacing-xl { height: 100px; }

/* Margin Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-negative-sm { margin-bottom: -1.8rem; }
.mb-negative-md { margin-bottom: -4.2rem; }
.mb-negative-lg { margin-bottom: -0.7rem; }
.mb-negative-xl { margin-bottom: -0.3rem; }

/* Padding Utilities */
.p-0 { padding: 0; }
.px-0 { padding-left: 0; padding-right: 0; }

/* Text Alignment Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Display Utilities */
.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }

/* Width Utilities */
.w-100 { width: 100%; }
.w-25 { width: 25%; }
.w-50 { width: 50%; }
