/* table の項目名の幅を 中身の文字幅にフィットさせる */
.table td.fit,
.table th.fit {
    white-space: nowrap;
    width: 1%;
}

/* 必須項目のマーク */
.form-label.required:not(.hide-required):after {
    content:"*";
    color:red;
}

.status-badge {
    width: .75rem;
    height: .75rem;
    margin-right: .25rem;
}
.status-badge-up { background-color: rgb(34 197 94); }
.status-badge-down { background-color: #ccc; }