.errorcodes { margin-top: 20px; }
.dropdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin: 20px 0 40px;
}
@media screen and (max-width: 767px) {
  .dropdown-container {
    flex-direction: column;
  }
}
.dropdown-container select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
}
@media screen and (min-width: 768px) {
  .dropdown-container select:first-of-type {
    margin-right: 40px;
  }
}
.dropdown-container label {
    font-weight: bold;
    margin-right: -10px; 
}
.table-content {
    display: none;
}
.table-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 20px 0;
    border-left: 3px solid #333;
    line-height: 1.2;
    padding-left: 7px;
}
.table-model {
    margin-bottom: 25px;
    margin-left: 10px;
}
.table-model dt {
    font-weight: bold;
}
.table-model dd {
    display: flex;
    flex-wrap: wrap;
}
.table-model dd span {
   width: 140px;
   margin-top: 15px;
   line-height: 1;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: fixed;
}
.data-table tbody {
  background-color: white;
}
.data-table th, .data-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
    vertical-align: middle;
}
.data-table th {
    background-color: #f2f2f2;
    text-align: center;
}
.data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.data-table th:nth-child(1),
.data-table td:nth-child(1) { width: 25%; }
.data-table th:nth-child(2),
.data-table td:nth-child(2) { width: 8%; }
.data-table th:nth-child(3),
.data-table td:nth-child(3) { width: 8%; }
.data-table th:nth-child(4),
.data-table td:nth-child(4) { width: 8%; }
.data-table th:nth-child(5),
.data-table td:nth-child(5) { width: 25%; }
.data-table th:nth-child(6),
.data-table td:nth-child(6) { width: 26%; }
.data-table td:nth-child(2),
.data-table td:nth-child(3),
.data-table td:nth-child(4) {
    text-align: center;
}
.table-contact {
  display: flex;
  padding: 2rem 0 8rem;
  justify-content: center;
  gap: 1em;
}
.table-contact .btn--inquiry, .table-contact .btn--manual {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: 180px;
  padding: .5rem;
  color: white;
  font-weight: bold;
}
.table-contact .btn--inquiry {
    background: #EDA900;
}
.table-contact .btn--manual {
    background: #009fe8;
}
.table-contact .btn--inquiry:hover, .table-contact .btn--manual:hover {
  text-decoration: none;
}