.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.text-bold,
.font-bold {
    font-weight: bold !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-justify {
    text-align: justify !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-underline {
    text-decoration: underline;
}

.color-primary {
    color: var(--mud-palette-primary);
}

.color-error {
    color: var(--mud-palette-error);
}

.color-white {
    color: #fff;
}

.bg-primary {
    background: var(--mud-palette-primary);
}

.bg-error {
    background: var(--mud-palette-error);
}