/* == Text modifications == */
.uppercase {
    text-transform : uppercase;
}

.underline {
    text-decoration : underline;
}

/* == Text alignment == */
.centered,
.text-center {
    text-align : center;
}

.text-right {
    text-align : right;
}

.text-left {
    text-align : left;
}

.text-noselect {
    user-select : none;
}

/* == Misc == */
.hidden {
    display : none !important;
}

[disabled], .disabled {
    opacity        : 0.5;
    pointer-events : none;
    user-select    : none;
}
