/*
 * IIDC IPMS Global Table Alignment
 *
 * SKU and Product columns: left aligned.
 * All other table columns: horizontally centered.
 */

html body table th.global-align-center,
html body table td.global-align-center {
    text-align: center !important;
    vertical-align: middle;
}

html body table th.global-align-left,
html body table td.global-align-left {
    text-align: left !important;
    vertical-align: middle;
}

html body table td.global-align-center input,
html body table td.global-align-center select,
html body table td.global-align-center textarea {
    text-align: center !important;
}

html body table td.global-align-center select {
    text-align-last: center;
}

html body table td.global-align-left input,
html body table td.global-align-left select,
html body table td.global-align-left textarea {
    text-align: left !important;
}

html body table td.global-align-left select {
    text-align-last: left;
}
