
/* --- BODY --- */

@media all {

  body {
    font-family: Arial, sans-serif;
    background-color: #23232eff;
    color: #eee;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  p {
    text-align: left;
    max-width: 600px;
    margin: 45px auto;
  }

}

/* --- TABLE --- */

@media all {

  #searchList {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
  }

  #searchList table {
    border-collapse: collapse;
    width: min(1000px, calc(100% - 100px));
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
  }

  #searchList th {
    text-align: left;
    padding: 15px 25px 15px 25px;
    background-color: #323d4fff;
    color: #b2b6bdff;
    position: relative;
  }

  #searchList td {
    text-align: left;
    padding: 8px 8px 8px 25px;
  }

  #searchList tr {
    background-color: #252a31ff;
  }

  #searchList tr:nth-child(even) {
    background-color: #2c343eff;
  }

  #searchList td.na {
    color: gray;
  }

  #searchList a {
    white-space: pre-wrap; 
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;  
    white-space: -o-pre-wrap;  
    word-wrap: anywhere;
  }

  #searchList td.world {
    padding: 8px;
    text-align: center;
    background-color: #323d4fff;
    color: #b2b6bdff;
  }

}
