<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */

.zrmshead {
  padding: 1px;
/*  margin-bottom: 30px; */
  color: inherit;
  background-color: #eee;
}

.zrms-background-image {
  background-image: url("../../img/product/WebManagement_Type03b.png");
  background-size: cover;
  height: 80vh;
}

.zrms-background-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width:470px;
}

.zrms-tooltip {
  /* なぜかbootstrapのtooltipクラスはopacityが0で完全透過なので見えるようにするために上書く */
  opacity: 1 !important;
}

.header-login-name{
  /* ログインユーザ名をロゴの左側に表示するための設定 */
  /* ログイン名を書くインライン要素の親になるブロック要素に適応する */
  /* 下揃えにするため相対表示設定にする */
  position: relative;
}

.header-login-name span {
  /* ログインユーザ名をロゴの左側に表示するための設定 */
  /* navbarの下揃えで表示したいのでabsoluteにしてbottomを指定する */
  position: absolute;
  bottom: 5px;
  /* ロゴとログインユーザ名の余白 */
  left: -10px;
  /* 要素の長さ分左にずらす */
  transform:translateX(-100%);
  /* Bootstrapのデフォルトになっているmarginを上書き */
  margin-top: 0px;
  margin-bottom: 0px;
}

.table&gt;tbody&gt;.vertical-centering-row&gt;td {
  /* 垂直方向を中央揃えにしたいtable行にはvertical-centering-rowクラスを適応する */
  /* bootstrapの定義(top)より優先させるために詳細に指定する */
  vertical-align: middle;
}

table&gt;tbody&gt;.vertical-centering-row&gt;.preview-cell {
  /* Preview表示セルは上下のPaddingを消す */
  padding-top: 0px;
  padding-bottom: 0px;
}

.table&gt;tbody&gt;.network-trend-graph-row {
  height: 50px;

}

.table&gt;tbody&gt;.network-trend-graph-row&gt;td{
  padding-top: 0px;
  padding-bottom: 0px;
}

.table&gt;thead&gt;tr&gt;.sortable-header {
  background-color: #f0f8ff;
}

.sticky-container{
  position: sticky;
  top: calc(4em + 5px);
}

.sort-button {
  border-radius: 5px;
  margin: 5px;
}

.no-wrap-cell {
  white-space: nowrap;
}
.ellipsis-cell {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 10em;
}
</pre></body></html>