* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
}

.list-container {
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}

.list-container thead {
  background-color: #f9f9f9;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.sub-container {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  background-color: transparent;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table {
  width: 100%;
  border-bottom: 1px solid #dddcdc;
}

th:nth-child(1) {
  width: 80px;
  text-align: right;
}

th:nth-child(3),
th:nth-child(4) {
  width: 160px;
}

th:nth-child(5) {
  width: 100px;
}
