#customers {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
}
  
#customers td, #customers th {
  padding: 8px;
}
  
#customers tr:nth-child(even){background-color: #f2f2f2;}
#customers tr:hover {background-color: #ddd;}
  
#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: darkcyan;
  color: white;
}

.table-container {
  display: flex;
  flex-wrap: wrap;
}

.table-column {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 10px;
}

.table-list{
  margin: auto;
  text-align: left;
}

.td-list-names{
  padding-left: 10px;
  padding-right: 10px;
}

.td-list-size{
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.td-list{
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.whois-table {
    width: auto;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
}

.whois-table td {
    padding: 6px 5px;
    border-bottom: 1px solid #333;
}

.whois-key {
    color: #66c0ff;
}

.whois-value {
    color: #ddd;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:992px) {
  #customers {
    font-size: 10%;
  }
}

@media only screen and (max-width: 700px){
  .table-column {
    flex: 0 0 100%;
    padding: 0;
  }

  .table-container {
    flex-direction: column;
  }

  .td-list-names {
    width: 15em;
  }

}

@media only screen and (max-width: 600px){
  #customers {
    font-size: 2%;
  }

  .table-list tr{
    display: flex;
  }
  
  .table-list thead tr { 
    display: none; 
  }

  .td-list-names-share{
    display: block;
    flex:auto;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
  }

  .td-list-size{
    display: none;
  }
  
  .td-list{
    display: block;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
  }
}

/* Stil für das Dark-Theme */
@media (prefers-color-scheme: dark) {
  #customers tr:nth-child(even){background-color: #303030;}
  #customers tr:hover {background-color: #505050;}
}