body {
  font-size: 11px;
  max-width: 100%;
  text-align: left;

  background-color: #f4f4f9;
  color: #333;
  font-family: Arial, sans-serif;
  padding: 20px;
}

/* 出庫モードのタイトル */
.title {
  font-size: 2.5em; /* モードタイトルを大きく */
  color: #d9534f; /* 赤みがかった色で強調 */
  text-align: center;
  margin-bottom: 20px;
}

/* 在庫情報のテキストをさらに大きく */
.highlight-text {
  font-size: 1.5em; /* 文字サイズを大きく */
  color: #004080;
  border-bottom: 2px solid #005b96;
  padding-bottom: 5px;
  text-align: center;
}

/* 在庫状況確認中の文字のサイズ */
.large-text {
  font-size: 2em; /* さらに大きくして強調 */
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  color: #d9534f; /* 赤みのある色で見やすく */
}

/* 表デザインのカスタマイズ */
.table {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
  font-size: 1.5em; /* テーブル内の文字も大きく */
}

/* 表の見やすい境界線 */
.table th,
.table td {
  border: 2px solid #b0c4de;
  padding: 10px;
  text-align: left;
}

/* ボタンの見やすいスタイル */
.btn {
  background-color: #004080;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.2em;
  cursor: pointer;
  border-radius: 5px;
}

.btn:hover {
  background-color: #0066cc;
}

button {
  width: 15em;
  height: 10em;
  background-color: #fff;
  border: solid 2px #191970;
  color: #191970;
  border-radius: 20px;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
  box-shadow: 0 5px 0 #191970;
  display: inline-block;
  transition: 0.3s;
}
button:hover {
  color: #27acd9;
  background: #fff;
}
.inbound {
  background-color: #191970;
  color: #fff;
}
.outbound {
  background-color: #ae0eba;
  color: #fff;
}
.hidden {
  display: none;
}

table {
  table-layout: fixed;
  word-break: break-all;
  width: 100%;
  border-collapse: collapse;
}

table tr {
  border-bottom: solid 2px white;
}

table tr:last-child {
  border-bottom: none;
}

table th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 10px 0;
}

table th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td {
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}
