#reserve-list-plugin table {
  width: 100%;
}
#reserve-list-plugin table td:nth-child(1) {
  width: 10% !important;
}
#reserve-list-plugin table td:nth-child(2) {
  width: 10% !important;
}
#reserve-list-plugin table td:nth-child(3) {
  width: 10% !important;
}
#reserve-list-plugin table td:nth-child(4) {
  width: 10% !important;
}
#reserve-list-plugin table td:nth-child(5) {
  width: 10% !important;
}
#reserve-list-plugin table td:nth-child(6) {
  width: 10% !important;
}
#reserve-list-plugin table td:nth-child(7) {
  width: auto !important;
}
#reserve-list-plugin table td:nth-child(8) {
  width: 10% !important;
}

/* 未払いリスト */
#reserve-list-plugin .btn_rebill {
  display: inline-block;
  border: 1px solid #999999;
  border-radius: 4px;
  line-height: 100%;
  padding: 4px 10px;
  background: #eeeeee;
  cursor: pointer;
}
#reserve-list-plugin .btn_rebill:hover {
  background: #cccccc;
}
/* 未払いリスト（ストライプ修正） */
#reserve-list-plugin.for_unpaid .striped > tbody > tr.past:nth-child(2n+1) {
	background-color: #e6e6b8;
}
#reserve-list-plugin.for_unpaid .striped > tbody > tr.past:nth-child(2n) {
	background-color: #e6e6b8;
}
#reserve-list-plugin.for_unpaid .striped > tbody > tr.past[data-vrow="even"] {
	background-color: #ffffcc;
}
/*未払いリスト（再請求モーダル）*/
#modal_unpaid_wrap {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,.8);
  display: none;
}
#modal_unpaid_wrap > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#modal_unpaid {
	display: inline-block;
	padding: 30px;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 10px;
	max-height: calc(100vh - 40px);
	overflow: auto;
	box-sizing: border-box;
}
#modal_unpaid .unpaid_notice {
  color: #ff0000;
  padding-bottom: 20px;
}
#modal_unpaid .unpaid_body {
  font-size: 16px;
  line-height: 145%;
}
#modal_unpaid .unpaid_bottom ul {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
#modal_unpaid .unpaid_bottom li > div {
  display: inline-flex;
  min-width: 150px;
  min-height: 50px;
  border: 1px solid #000000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#modal_unpaid .unpaid_bottom li > div:hover {
  background: #eeeeee;
}
