@charset "utf-8";

body {
    font-family: 'Noto Sans JP', 'Source Sans Pro', sans-serif;
    font-size: 1rem;
}

.footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #333;
}

.footer .btn {
    display: inline-block;
    width: 120px;
}

.navbar {
    background: transparent;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

@media (min-width: 768px) {
    .navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.navbar .brand {
    color: #ffffff;
    text-decoration: none;
}

.navbar .user,
.navbar .logout {
    position: absolute;
    right: 0px;
    font-size: 0.75rem;
    color: #ffffff;
}

.navbar .user {
    top: 7.5px;
}

.navbar .logout {
    top: 25px;
}

.change-department {
    font-size: 0.75rem;
    margin-right: 0.5rem;
    color: #c65911;
}

.department-name {
    font-size: 0.75rem;
}

.breadcrumb span,
.breadcrumb a {
    font-size: 0.75rem;
}

.input-brock {
    background-color: #fff2cc;
    padding-bottom: 1rem;
}

.heading {
    background-color: #ffd966;
    margin-bottom: 1rem;
}

main label {
    font-size: 0.75rem;
}

.form-control,
.form-select {
    font-size: 1rem !important;
}

.input-number {
    text-align: right;
}

fieldset.confirmation {
    padding: 2rem 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    fieldset.confirmation {
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
}

/* ホーム画面. */
div.information {
    border: 1px solid #ced4da;
    padding: 0.5rem;
    overflow-y: scroll;
    height: 17rem;
}

.information td {
    white-space: nowrap;
}

div.transferList {
    border: 1px solid #ced4da;
    padding: 0.5rem;
    /* overflow-y: scroll; */
    /* height: 17rem; */
}

.transferList td {
    white-space: nowrap;
}
.nav-item {
    width: 22%;
}

.nav-link {
    border-color: #f4b183 !important;
    padding: 0.5rem 0.5rem;
    color: #c55a11 !important;
    text-align: center;
}

.nav-link.active {
    background-color: #c55a11 !important;
    color: white !important;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.badge.badge-pill.badge-danger {
    color: #fff;
    background-color: #dc3545;
    position: absolute;
    top: -8px;
    right: 4px;
    z-index: 1000;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
    font-size: 1em !important;
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d;
    font-size: 1em !important;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
    font-size: 1em !important;
}

.badge-warning {
    color: #fff;
    background-color: #ffc107;
    font-size: 1em !important;
}

.badge-cheack {
    color: #212529;;
    background-color: #ffc107;
    font-size: 1em !important;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
    font-size: 1em !important;
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
    font-size: 1em !important;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
    font-size: 1em !important;
}

.dropdown-menu {
    font-size: 0.75rem;
    right: 0;
    border-color: #f4b183;
    min-width: 150%;
}

.dropdown-item {
    color: #c55a11 !important;
    padding: 0.25rem 0.5rem;
}

#homeCardArea .card:not(.category) {
    height: 50px;
}

#homeCardArea .card.category {
    background-color: #BFBFBF;
    padding: 0px;
}

#homeCardArea .card-header.category {
    background-color: #BFBFBF;
    padding-bottom: 0.1rem;
    padding-top: 0.1rem;
    font-size: 15px;
    font-weight: bold;
    border-bottom: none;
}

#homeCardArea .card-body.category {
    background-color: #BFBFBF;
    padding: 0.1rem 0.6rem 0.5rem 0.6rem;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

#homeCardArea .card:not(.category) a {
    color: black;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
}

#homeCardArea .card-body:not(.category) {
    padding: 0.1rem 0.1rem;
    height: 100%;
}

.font-small {
    font-size: 0.75rem;
}

/* モーダル. */
.modal-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    transition: 0.25s ease-out;
}

.modal-wrapper.show {
    opacity: 1;
    pointer-events: all;
}

.modal-image {
    position: absolute;
    max-width: 80%;
    max-height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: 0.5s ease-out;
}

.modal-image.show {
    opacity: 1;
}

/* モーダル クローズボタン. */
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}

button.close:hover {
    opacity: 1;
}

/* 項目追加ボタン. */
button.btn--circle {
    width: 30px;
    height: 30px;
    padding: 0;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

button.btn--circle i {
    font-size: 110%;
    line-height: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    letter-spacing: 0;
}

button.btn--circle:hover i {
    line-height: 25px;
}

/* 確認画面 申請経路確認表. */
.confirm-table {
    border: 1px solid #ced4da;
    padding: 0.5rem;
}

/* Ajax通信時のローディング用 */
#loading {
    display: table;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.8;
}

#loading .loadingMsg {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding-top: 140px;
    background: url('../images/712-88.gif') center center no-repeat;
}

/* 兼務日報システム背景色 */
td.bg-nosetting {
    background-color: #eee;
}

td.bg-noedited {
    background-color: #fce;
}

td.bg-saved {
    background-color: #cff;
}

td.bg-fixed {
    background-color: #9f9;
}

/* ハンバーガーメニューサイズ */
.menu {
    font-size: 2em;
    -webkit-text-stroke: 0.06rem #f8cbad;
}


/*申請経路*/

/*下矢印*/
.cp_arrows {
    margin: 1em auto;
}

.cp_arrows [class*='cp_arrow'] {
    position: relative;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    color: #eb7d31;
}

.cp_arrows [class*='cp_arrow']:after,
.cp_arrows [class*='cp_arrow']:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: '';
}

/* 矢印　下の三角の部分*/
.cp_arrows [class*='cp_arrow'] {
    top: -0.1em;
    width: 0;
    height: 0;
    margin: 1em 1px;
    border-width: 6px;
    border-style: solid;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

/* 矢印　縦の棒の部分*/
.cp_arrows [class*='cp_arrow']:before {
    position: absolute;
    top: -4.5px;
    right: 0;
    width: 11px;
    height: 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-box-shadow: inset 0 0 0 32px;
    box-shadow: inset 0 0 0 32px;
}

.cp_arrows .cp_arrow_down {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.ap_background {
    border: 1px solid #233b6c;
    background-color: #ddebf7;
    border-radius: 5px;
    padding: 8px;
    padding-right: 50px;
    padding-top: 2px;
}

.td_dottedbox {
    border: 2px dotted #233b6c;
    margin: 0;
    padding: 5px;
    padding-top: 10px;
}

.div_border {
    border-bottom: 1px solid #cccccc;
}

/* 選択ボタン */
.btn-gradation {
    display: inline-block;
    text-align: left;
    background-image: linear-gradient(#eaeaea 0%, #c6c6c6 100%);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5),
        0 2px 2px rgba(0, 0, 0, 0.19);
    color: black;
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: bolder;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 1);
    padding: 4px 24px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.btn-gradation:hover {
    opacity: 0.8;
}

/*  */
.chosen {
    background-color: #e3eeff;
}

/* 取り下げ申請ボタン */
.btn-warning {
    color: #fff;
    --bs-btn-hover-color: #fff;
}

.remand-comment {
    display: inline-block;
    width: 15vw;
}

@media (max-width: 1690px) {
    .remand-comment {
        display: inline-block;
        width: 20vw;
    }
}

@media (max-width: 768px) {
    .remand-comment {
        display: inline-block;
        width: 38vw;
    }
}

@media (max-width: 320px) {
    .remand-comment {
        display: inline-block;
        width: 32vw;
    }
}

/* 申請停止　テキストボックス */
.box {
    width: 90%;
    margin: auto;
    margin-top: 5em;
    margin-bottom: 10em;
    padding-bottom: 1em;
    border: 2px solid #ff7b00;
    background-color: white;
    border-radius: 10px;
    text-align: center;
}

.maintenance {
    opacity: 0.6;
    position: absolute;
    top: 0%;
    width: 100%;
    background-color: darkgray;
}

.btn-xs {
    --bs-btn-padding-y: 0.1rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.25rem;
}

.cal-btn {
    margin-top: .25rem;
    margin-bottom: 1px;
}

.cal-current-month {
    margin-left: .25em;
}

.cal-prev {
    margin-right: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right-width: 0px;
}

.cal-next {
    margin-left: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left-width: 0px;
}

/* 出張他食事代の文字色 */
.font-tripmeals-departure {
    color:red;
    font-weight:bold;
}

.font-tripmeals-stay {
    color:blue;
    font-weight:bold;
}

.font-tripmeals-return {
    color:green;
    font-weight:bold;
}

.font-tripmeals-oneday {
    color:darkorange;
    font-weight:bold;
}

.font-accommodation-stay {
    color:blue;
    font-weight:bold;
}

.font-accommodation-oneday {
    color:darkorange;
    font-weight:bold;
}
/* modal サイズ */
.transform-modalcontent {
    transform:scale(0.8);
    -moz-transform:scale(0.8);
    -webkit-transform:scale(0.8);
    -o-transform:scale(0.8);
    -ms-transform:scale(0.8);
    transform-origin:0 0;
    -moz-transform-origin:0 0;
    -webkit-transform-origin:0 0;
    -o-transform-origin:0 0;
    -ms-transform-origin:0 0;
    margin-bottom:-10vh;
    margin-right:-100%;
    width:125%;
    height:65vh;
}

/* modal サイズ */
.transform-large-modalcontent {
    transform:scale(0.8);
    -moz-transform:scale(0.8);
    -webkit-transform:scale(0.8);
    -o-transform:scale(0.8);
    -ms-transform:scale(0.8);
    transform-origin:0 0;
    -moz-transform-origin:0 0;
    -webkit-transform-origin:0 0;
    -o-transform-origin:0 0;
    -ms-transform-origin:0 0;
    margin-bottom:-10vh;
    margin-right:-100%;
    width:125%;
    height: 85vh;
}

/* iframe 疑似非表示 */
.iframe-hide {
    position: absolute;
    left: -10000px;
    top: -10000px;
}

/* 明細選択強調表示 */
.border-highlight {
    border-radius: 0.125rem;
    border-color: #ff9933 !important;
    border-width: 0.25rem !important;
}

/* PC用レイアウト */
.pc-layout,
.pc-layout table:not(.orign) {
    font-size: .8em;
}

.cal-next {
    margin-left: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left-width: 0px;
}
.pc-layout label {
    font-size: .95em;
}

.pc-layout .btn {
    font-size: 1em;
}

.pc-layout table#detailAmountTable:not(.orign):not(.pc-table-borderless) tr {
    border-bottom: 1px solid #e3e6f0;
}

.pc-layout table#detailAmountTable:not(.orign):not(.pc-table-borderless) thead {
    border-bottom: 2px solid #e3e6f0;
}

.pc-layout table#detailAmountTable:not(.orign):not(.pc-table-borderless) th,
.pc-layout table#detailAmountTable:not(.orign):not(.pc-table-borderless) td {
    border-top: none;
    border-right: 1px solid #e3e6f0;
}

.pc-layout table#detailAmountTable:not(.orign):not(.pc-table-borderless) th:last-child,
.pc-layout table#detailAmountTable:not(.orign):not(.pc-table-borderless) td:last-child {
    border: none;
}

.float-preview-block {
    --width-scale: 0.42;
    --float-preview-max-height: 50%;
    --float-preview-position: fixed;
    --float-preview-margin-right: 5%;
    --float-preview-background: var(--bs-white);
}

@media (min-width: 576px) {
    .float-preview-block {
        max-width:calc(540px * var(--width-scale));
        max-height: var(--float-preview-max-height);
        position: var(--float-preview-position);
        margin-right: var(--float-preview-margin-right);
        background: var(--float-preview-background);
    }
}

@media (min-width: 768px) {
    .float-preview-block {
        max-width:calc(720px * var(--width-scale));
        max-height: var(--float-preview-max-height);
        position: var(--float-preview-position);
        margin-right: var(--float-preview-margin-right);
        background: var(--float-preview-background);
    }
}

@media (min-width: 992px) {
    .float-preview-block {
        max-width:calc(960px * var(--width-scale));
        max-height: var(--float-preview-max-height);
        position: var(--float-preview-position);
        margin-right: var(--float-preview-margin-right);
        background: var(--float-preview-background);
    }
}

@media (min-width: 1200px) {
    .float-preview-block {
        max-width:calc(1140px * var(--width-scale));
        max-height: var(--float-preview-max-height);
        position: var(--float-preview-position);
        margin-right: var(--float-preview-margin-right);
        background: var(--float-preview-background);
    }
}

@media (min-width: 1400px) {
    .float-preview-block {
        max-width:calc(1320px * var(--width-scale));
        max-height: var(--float-preview-max-height);
        position: var(--float-preview-position);
        margin-right: var(--float-preview-margin-right);
        background: var(--float-preview-background);
    }
}

.custom-scroll::-webkit-scrollbar{
    width: 5px;
 }
 .custom-scroll::-webkit-scrollbar-track{
    background-color: #ccc;
 }
 .custom-scroll::-webkit-scrollbar-thumb{
    background-color: #929292;
 }

 .input-error {
    background-color: #ffcdf2;
 }

.custom-view table {
  width: 100%;
}
.custom-view thead th {
  padding: 10px;
  text-align: left;
}
.custom-view tbody th,
.custom-view tbody td {
  padding: 10px;
  text-align: left;
}
.no-data {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 80px;
  background: #d0d0d04d;
  border: 1px solid #ddd;
}

.modal-dialog-fluid {
  max-width: inherit;
  width: 60vw;
  margin-left: 20vh;
}

#resizer,
#dispPdfModal {
    width:100%;
    height:90vh;
}
.ui-resizable-handle {
  background-color: #ccc;
}

.filearea {
    border-color: rgb(0, 0, 0);
    border-style: dotted;
    background-color: rgb(190, 190, 190);
}

.filearea .parent {
    position: relative;
    width: 100%;
    height: 100%;
}

.filearea .child {
    display: block;
    position: absolute;
    top: 0;
    width: inherit;
    height: inherit;
    opacity: 0.0;
}

.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.custom-view table {
  width: 100%;
}
.custom-view thead th {
  padding: 10px;
  text-align: left;
}
.custom-view tbody th,
.custom-view tbody td {
  padding: 10px;
  text-align: left;
}
.no-data {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 80px;
  background: #d0d0d04d;
  border: 1px solid #ddd;
}

.modal-dialog-fluid {
  max-width: inherit;
  width: 60vw;
  margin-left: 20vh;
}

#resizer,
#dispPdfModal {
    width:100%;
    height:90vh;
}
.ui-resizable-handle {
  background-color: #ccc;
}

.filearea {
    border-color: rgb(0, 0, 0);
    border-style: dotted;
    background-color: rgb(190, 190, 190);
    width: 300px;
    height: 150px;
}

.filearea .parent {
    position: relative;
    width: 100%;
    height: 100%;
}

.filearea .child {
    display: block;
    position: absolute;
    top: 0;
    width: inherit;
    height: inherit;
    opacity: 0.0;
}

.no-hover:hover {
    background-color: inherit;
}

.lg-chk {
    transform: scale(2.8);
    accent-color: var(--bs-primary);
    margin-bottom: .8rem;
}

.sm-chk {
    transform: scale(2.0);
    accent-color: var(--bs-primary);
    margin-bottom: .8rem;
}

.taxTable {
    border-collapse: collapse;
    background-color: white;
    border: px solid ;
    font-size: 0.75em;
}
.taxTable th {
    border: 1px solid black;
    padding: 5px;
    text-align: left;
}
.taxTable td {
    border: 1px solid black;
    padding: 5px;
    text-align: right;
}

.taxTable .tax input {
    width: 7em;
}

@media (min-width: 768px) {
    .taxTable .tax input {
        width: 13em;
    }
}

@media (max-width: 360px) {
    .taxTable .tax input {
        width: 6.5em;
    }
}

@media (max-width: 320px) {
    .taxTable .tax input {
        width: 5.5em;
    }
}

.ui-autocomplete {
    max-height: 30vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.transportation {
    --bs-table-bg: #f1fbff !important;
}

.stay {
    --bs-table-bg: #c9fffe !important;
}

.trip-meals {
    --bs-table-bg: #fff1fc !important;
}

.accommodation-work {
    --bs-table-bg: #fff1fc !important;
}

.other {
    --bs-table-bg: #f1fff2 !important;
}

.bg-error {
    --bs-table-bg: #ffcdf2 !important;
}

.cash-color {
    color: #c65911;
}

.transfer-color {
    color: #70ad47;
}

.sticky-top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #e3e6f0;
    border-bottom: 1px solid #e3e6f0;
    /*z-index: -1;*/
  }

.readonly {
    background-color: #e9ecef;
    opacity: 1;
}

.check-holiday {
    position: relative;
    cursor: pointer;
    font-size: 1.2em;
}

.check-holiday input[type="checkbox"] {
    appearance: none; /* デフォルトスタイルを無効化 */
    -webkit-appearance: none;
    left: 0px;
    top: 0px;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    border: 2px solid #ccc;
    border-radius: 0.25em;
    background: #fff;
}

.check-holiday input[type="checkbox"]:disabled {
    appearance: none; /* デフォルトスタイルを無効化 */
    -webkit-appearance: none;
    left: 0px;
    top: 0px;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    border: 2px solid #ccc;
    border-radius: 0.25em;
    background: #c9c8c8;
}

.check-holiday input[type="checkbox"]::before {
    content: "休";
    visibility: hidden;
    color: white;
    background-color: grey;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4em;
    height: 1.4em;
    font-size: 1em;
    border: 0px solid;
    border-radius: 0.25em;
}

.check-holiday input[type="checkbox"]:checked::before {
    visibility: visible;
}

#check-holiday-all{
    background-color: grey;
    position: relative;
    cursor: pointer;
    font-size: 1.2em;
    width: 1.6em;
    height: 1.6em;
    font-size: 1em;
    border: 0px solid;
    border-radius: 0.25em;
}

.date-modal-link{
    color: black;
    border-bottom: none;
}

#calendarBody tr.is-holiday *{
    background-color: #c9c8c8;
}

@media (min-width: 768px) {
    .dr-display {
        width: 80% !important;
    }
}

@media (max-width: 767.99px) {
    .dr-display {
        width: 100% !important;
    }
}

.modal-sub-message {
    color: blue;
    font-size: 0.85rem;
}

.modal-table-title {
    font-size: 0.85rem;
}

#settingJigyouSelectedTable tr.selected-row *{ 
    background-color: rgb(224, 243, 245);
}

.modal-label {
    font-size: 0.75rem;
}

.to-jigyou:disabled {
    border: none;
    outline: none;
}

/** モーダルビューが開いているときの本文のスクロールを無効にする */
body.modal-open {
    overflow: hidden;
}

.table-header-td {
    background-color: #DAE9F8 !important;
    text-align: center;
    vertical-align: middle;
    font-size: .75rem;
}

.vendor-bank {
    color: green;
}

td.transfer-amount-label{
    background-color: #e9ecef !important;
    border: none;
    text-align: end;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    font-size: .75rem;
}

td.transfer-amount{
    background-color: #e9ecef !important;
    border: none;
    text-align: end;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    font-size: .75rem;
}

td.transfer-total-amount-label{
    background-color: #DAE9F8 !important;
    border-top: 1px solid black !important;
    border-bottom: 1px solid black !important;
    text-align: end;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    font-size: .75rem;
}

td.transfer-total-amount{
    background-color: #DAE9F8 !important;
    border-top: 1px solid black !important;
    border-bottom: 1px solid black !important;
    text-align: end;
    padding-top: 0.25rem !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem;
    font-size: .75rem;
}

.transfer-input-content{
    font-size: .75rem;
}

.form-control-detail{
    min-height: calc(1.0em + .5rem + calc(var(--bs-border-width) * 2));
    padding: .15rem .5rem;
    font-size: .75rem;
    border-radius: var(--bs-border-radius-sm);
}

#detailAmountTable.table>:not(caption)>*>* {
    padding: 0.35rem .35rem;
    color: var(--bs-table-color-state,var(--bs-table-color-type,var(--bs-table-color)));
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state,var(--bs-table-bg-type,var(--bs-table-accent-bg)));
}

.detail_header span{
    background-color: #aae5f7;
}

.detail-content #detail_table{
    border-collapse: collapse;
    border: 1px solid #000000;
}

.detail-content #detail_table thead{
    border: 1px solid #000000; 
    background-color: #98c8e4;
}

.detail-content #detail_table thead tr td,
.detail-content #detail_table tbody tr td{
    height: 30px;
    border: 1px solid #000000; 
}

.mb-detail_header span {
    background-color: #aae5f7;
}

.mb-detail-content #mb-detail_table{
    border-collapse: collapse;
    border: 1px solid #000000;
    font-size: 0.5rem;
    table-layout: fixed;
    width: 100%;
}

.mb-detail-content #mb-detail_table thead{
    border: 1px solid #000000;
    background-color: #98c8e4;
}

.mb-detail-content #mb-detail_table thead tr td,
.mb-detail-content #mb-detail_table tbody tr td{
    height:30px;
    border: 1px solid #000000;
}