.room {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  padding: 12px;
}

.line {
  display: flex;
  gap: 100px;
}

.line section {
  display: flex;
  gap: 6px;
}

.info {
  position: absolute;
  bottom: 6px;
  right: 184px;
  text-align: center;
  line-height: 18px;
}

.seat {
  width: 40px;
  height: 40px;
  background-color: #ddd;
  border-radius: 6px;
  color: #666;
  text-align: center;
  line-height: 42px;
}

.seat.priority {
  background-color: #fcd;
}

.seat.selected {
  color: #fff;
  background-color: #f61;
  font-weight: bold;
}

.seat.select-able {
  cursor: pointer;
}

.capture {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  font-size: 18px;
  background-color: #f61;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.simple-toast {
  position: fixed;
  top: 20px;
  left: calc(50% - 140px);
  width: 240px;
  padding: 10px 20px;
  font-size: 18px;
  text-align: center;
  background-color: #666;
  color: #fff;
  border: none;
  border-radius: 6px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  user-select: none;
}

.button-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 16px;
}

.button-wrapper button {
  padding: 8px 18px;
  font-size: 20px;
  font-weight: bold;
  background-color: #9bf;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
