.tablebox {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.tablebox_head {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tablebox_title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background-color: #0b68d2;
  padding: 10px 20px;
}

.tablebox_more {
  padding: 10px 20px;
}

.tablebox_more > a {
  text-decoration: none;
  color: #3b4f6a;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d5e2f2;
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

thead {
  background-color: white;
}

thead > tr > th {
  color: #3b4f6a;
}

tbody > tr > th > a {
  color: #3b4f6a;
  text-decoration: none;
}

th,
td {
  border: 1px solid #d5e2f2;
  padding: 8px 10px;
  color: #3b4f6a;
  text-align: center;
}

thead > tr > th:nth-of-type(1) {
  width: 45%;
}

tbody > tr > th:nth-of-type(1) {
  text-align: left;
}

tbody > tr:nth-of-type(even) {
  background-color: #e8f0fb;
}

.tablebox + .tablebox {
  margin-top: 30px;
}
