.table-rent-space-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #000;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.table-rent-space-container .table-title{
  background-color: #FFD966;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 0;
  border-bottom: 1px solid #000;
}
/* 表頭 */
.table-rent-space-container .table-header {
  background-color: #FFF1CC;
  display: flex;
  border-bottom: 1px solid #000;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.table-rent-space-container .cell {
  flex: 1;
  border-right: 1px solid #000;
  /* padding: 4px 6px; */
  text-align: center;
  word-break: break-word;
  display: flex;
  align-items: center;       /* 垂直置中 */
  justify-content: center;   /* 水平置中 */
}

.table-rent-space-container .cell.diagonal-header {
  position: relative;
  width: 160px;
  height: 80px;
  background-color: #fff3cd;
  /* border: 1px solid #000; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 斜線 */
.table-rent-space-container .cell.diagonal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom left, transparent 49.5%, #000 50%, transparent 50.5%);
  pointer-events: none;
}

/* 左下文字 */
.table-rent-space-container .cell .text-left {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-weight: bold;
}

/* 右上文字 */
.table-rent-space-container .cell .text-right {
  position: absolute;
  top: 8px;
  right: 12px;
  font-weight: bold;
}
.table-rent-space-container .cell:last-child {
    border-right: none;
}
/* 表身 */
.table-rent-space-container .table-body {
  font-size: 14px;
}
.table-rent-space-container .div-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #000;
}
.table-rent-space-container .div-row:last-child {
  border-bottom: none;
}
/* 備註列 */
.note-row .note-title {
  flex: 1;
  background-color: #fff;
}

.note-row .note-content {
  flex: 3;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.6;
  padding: 4px 1px;
  background-color: #fff;
}

.note-row {
  border-bottom: none;
}

.table-rent-space-container .cell-row{
  flex: 1;
  border-right: 1px solid #000;
  text-align: center;
  word-break: break-word;
  display: flex;
  align-items: center;       /* 垂直置中 */
  justify-content: space-evenly;   /* 水平置中 */
  flex-direction: column;
}
.table-rent-space-container .cell-row:last-child {
  border-right: none;
}
.table-rent-space-container .cell-row .item{
  width: 100%;
  border-bottom: 1px solid #000;
  /* padding: 4px 6px; */
}
.table-rent-space-container .cell-row .item:last-child{
  border-bottom: none;
}