/**
 * Nikolas X — Utilities
 */

.nx-u-text-center {
	text-align: center;
}

.nx-u-text-left {
	text-align: left;
}

.nx-u-text-right {
	text-align: right;
}

.nx-u-muted {
	color: var(--nx-color-muted);
}

.nx-u-text-inverse {
	color: var(--nx-color-text-inverse);
}

.nx-u-bg-dark {
	background: var(--nx-color-dark);
}

.nx-u-bg-dark-secondary {
	background: var(--nx-color-dark-secondary);
}

.nx-u-bg-light {
	background: var(--nx-color-light);
}

.nx-u-bg-white {
	background: var(--nx-color-white);
}

.nx-u-fw-medium {
	font-weight: var(--nx-fw-medium);
}

.nx-u-fw-semibold {
	font-weight: var(--nx-fw-semibold);
}

.nx-u-fw-bold {
	font-weight: var(--nx-fw-bold);
}

.nx-u-m-0 {
	margin: 0;
}

.nx-u-mb-0 {
	margin-bottom: 0;
}

.nx-u-mb-2 {
	margin-bottom: var(--nx-space-2);
}

.nx-u-mb-4 {
	margin-bottom: var(--nx-space-4);
}

.nx-u-mb-6 {
	margin-bottom: var(--nx-space-6);
}

.nx-u-mt-6 {
	margin-top: var(--nx-space-6);
}

.nx-u-mt-8 {
	margin-top: var(--nx-space-8);
}

.nx-u-p-0 {
	padding: 0;
}

.nx-u-hidden {
	display: none !important;
}

.nx-u-flex {
	display: flex;
}

.nx-u-inline-flex {
	display: inline-flex;
}

.nx-u-items-center {
	align-items: center;
}

.nx-u-justify-between {
	justify-content: space-between;
}

.nx-u-gap-2 {
	gap: var(--nx-space-2);
}

.nx-u-gap-3 {
	gap: var(--nx-space-3);
}

.nx-u-gap-4 {
	gap: var(--nx-space-4);
}

.nx-u-w-full {
	width: 100%;
}

.nx-u-max-w-prose {
	max-width: 40rem;
}

.nx-u-mx-auto {
	margin-inline: auto;
}

.nx-u-rounded {
	border-radius: var(--nx-radius);
}

.nx-u-rounded-md {
	border-radius: var(--nx-radius-md);
}

.nx-u-shadow {
	box-shadow: var(--nx-shadow);
}

.nx-u-border {
	border: var(--nx-border-width) solid var(--nx-color-border);
}

.nx-u-list-none {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nx-u-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nx-u-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
