/**
 * Admin Core — utilidades estructurales (sin color).
 */
.u-flex {
  display: flex;
}

.u-flex-col {
  flex-direction: column;
}

.u-items-center {
  align-items: center;
}

.u-justify-between {
  justify-content: space-between;
}

.u-gap-sm {
  gap: 0.5rem;
}

.u-gap-md {
  gap: 1rem;
}

.u-gap-lg {
  gap: 1.5rem;
}

.u-w-full {
  width: 100%;
}

.u-min-w-0 {
  min-width: 0;
}

.u-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
