/* assets/css/utilities.css */

/* Helper classes for text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Margin and Padding Helpers (example) */
.mt-10 { margin-top: 10px; }
.mb-20 { margin-bottom: 20px; }
.p-15 { padding: 15px; }

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
