.table-container th {
  padding: 5px;
  text-align: left;
  white-space: nowrap;
}

.table-container td {
  border: 1px solid #ccc !important;
  padding: 5px;
  text-align: left;
  white-space: nowrap;
}

.table-container .last-td {
  border: 0px solid #ccc !important;
}

.table-container .last-td {
  border: 0px solid red;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-container table button {
  font-size: 14px;
}

#filters {
  display: flex;
  /*flex-wrap: wrap;*/
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: first baseline;
}

/*#filters>div {
  min-width: 10px;
  flex: 1 1 50px;
}*/

#filters label {
  display: block;
  margin-bottom: 0rem;
  font-size: 0.9em;
}

@media (max-width: 600px) {
  #filters {
    flex-direction: column;
  }

  #filters>div {
    width: 100%;
  }
}


tr {
  cursor: pointer;
}

details {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.3em 0.5em;

  /*background-color: #f9f9f9;*/
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

summary {
  cursor: pointer;
  white-space: nowrap;
  font-size: 15px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 8px;
  transition: transform 0.2s ease;
}

details[open] summary::before {
  transform: rotate(90deg);
}

details p {
  margin: 10px 0 0;
}