body {
  padding: 1rem;
  background-color: rgb(253, 191, 76);
  text-align: center;
  overflow: hidden;
}
#table-area {
  height: 12rem;
  background-color: white;
  overflow-y: auto;
}
#table-area table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid;
}
#table-area thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 1px solid;
  background-color: skyblue;
  font-weight: bold;
  height: 2rem; 
}
#table-area tbody td {
  border: 1px solid;
  background-color: white;
  height: 2rem; 
}
#table-area tfoot td {
  position: sticky;
  bottom: 0;
  z-index: 1;
  border: 1px solid;
  background-color: lightgray;
  font-weight: bold;
  height: 2rem; 
}
#table-area .id {
  width: 20rem;
}
#table-area .hizuke {
  width: 30rem;
}
#table-area .hinmoku {
  width: 50rem;
}
#table-area .kingaku {
  width: 30rem;
}
.condition {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.search-button {
  text-align: left;
}
.value {
  width: 19.5rem;
}
.bound {
  width: 8rem;
}
#popup-status {
    font-size: 1.25rem;
    font-weight: bold;
    color: red;
    margin-bottom: 1rem;
}
