/* ============================================================
   UTILITIES: TEXT
   Text utilities for alignment, wrapping, and style
   ============================================================ */

/* Text color utilities */
.ds-text-brand-red { color: var(--ds-brand-red) !important; }
.ds-text-brand-blue { color: var(--ds-color-edit) !important; }

/* Alignment helpers */
.ds-align-top { vertical-align: top !important; }
.ds-text-center { text-align: center !important; }

/* Display and flow helpers */
.ds-float-end { float: right !important; }
.ds-inline-block { display: inline-block !important; }
.ds-display-none { display: none; }

/* Width helpers */
.ds-w-100 { width: 100% !important; }
.ds-w-200 { width: 200px !important; }

/* Common control styling */
.ds-search-input {
    text-align: center;
    border-radius: 9999px;
}

/* Semantic text color helpers */
.ds-text-create { color: var(--ds-color-create) !important; }
