/* ============================================================
UTILITIES
============================================================ */

/* Text Colors */
.text-primary {
  color: var(--primary);
}

.text-success {
  color: var(--success);
}

.text-danger {
  color: var(--danger);
}

.text-muted {
  color: var(--n600);
}

.text-primary-dark {
  color: var(--n900);
}

.text-muted-light {
  font-size: 12px;
  color: var(--n400);
}

.text-muted-white {
  color: var(--n300);
}

/* Text Sizes */
.text-sm {
  font-size: 12px;
}

.text-base {
  font-size: 14px;
}

.text-xs {
  font-size: 11px;
}

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

/* Font Weights */
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}

/* Pointer & Cursor Utilities */
.pe-none {
  pointer-events: none;
}
.cursor-default {
  cursor: default;
}

/* Extra Margins */
.mt-3 {
  margin-top: var(--s3); /* 12px */
}

/* Utility display override (MUST BE AT THE VERY END) */
.d-none {
  display: none;
}
