/* Depth Table Styles */
.depth-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  max-width: 600px;
  margin: 20px auto;
  font-family: sans-serif;
  background-color: white;
  color: black;
}

.depth-row {
  display: flex;
}

.depth-cell {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
  text-align: left;
}

.depth-row .depth-cell:last-child {
  border-right: none;
}

.depth-row:last-child .depth-cell {
  border-bottom: none;
}

.depth-header {
  background-color: #f0f0f0;
  font-weight: bold;
}

.depth-row:nth-child(odd):not(.depth-header) {
  background-color: #fafafa;
}

.depth-row .depth-cell:nth-child(1) {
  flex: 1.2;
}

.depth-row .depth-cell:nth-child(2),
.depth-row .depth-cell:nth-child(3) {
  flex: 1;
}

@media (max-width: 500px) {
  .depth-row {
    flex-direction: column;
  }
  .depth-cell {
    border-right: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
  }
}
