* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
section {
  position: absolute;
  left: 250px;
  width: calc(100% - 250px);
  min-width: 1000px;
}
section .contents {
  padding: 16px;
}

.input-label {
  display: block;
  font-weight: 600;
  color: black;
  font-size: 1.2rem;
}
input,
textarea {
  background-color: white;
  border: 1px solid #a9a9a9;
  border-radius: 4px;

  padding: 8px;
  color: black;
  width: 100%;

  margin-bottom: 16px;
}

textarea {
  height: 180px;
  resize: none;
}

.cleanser {
  display: inline-block;
  height: 1px;
  clear: both;
}

.description {
  color: #898989;
  font-size: 0.8rem;
}
p {
  font-size: 0.9rem;
}

.btn {
  display: inline-block;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 16px;
  text-decoration: none;
}
.btn-sm {
  padding: 2px 8px;
  margin-right: 8px;
  border-radius: 8px;
}
.btn-good {
  color: white;
  background-color: rgb(52, 152, 219);
}
.btn-normal {
  color: white;
  background-color: #bdbdbd;
}
.btn-alert {
  color: white;
  background-color: rgb(200, 50, 50);
}

.toast-wrapper {
  z-index: 1001;
  position: absolute;
  bottom: 16px;
  right: 16px;

  text-align: right;
  display: inline-block;
}
.toast {
  margin: 8px;
  border-radius: 8px;
  padding: 4px 8px;
  background-color: #e3a34d;
  color: white;

  font-size: 1rem;
  font-weight: 600;
}

.shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

table,
.table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  list-style: none;
}
tr {
  cursor: pointer;
}
tr.alert,
li.alert {
  border: 2px solid red;
}
th {
  font-weight: 600;
  background-color: #e3a34d;
  color: white;
}
th,
td {
  text-align: left;
  padding: 8px;
}
thead > tr {
  background-color: #e3a34d;
}
.table .row {
  padding: 4px;
}
.table .row:nth-child(even),
tr:nth-child(even) {
  background-color: #f2f2f2;
}

select {
  width: 256px;
  font-size: 18px;
}

.grid {
  display: grid;
  column-gap: 16px;
}
.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.flex {
  display: flex;
}
.flex.center {
  justify-content: center;
  align-items: center;
}
