@charset "utf-8";
/* CSS Document */
    body {
      font-family: system-ui, -apple-system, sans-serif;
      margin: 0;
      padding: 14px;
      padding-top:4px;
      background: #ccc;
      color: #222;
      line-height: 1.1;
      text-align: center;
    }

    h1 {
      font-size: 1.6rem;
  /*    margin: 0.4em 0 1em; */
      color: #1a3c5e;
      display: inline-block;
      margin: 0 auto;
    }
    a {
      color: #900;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    .container {
      width: auto;
      max-width: 720px;
      margin: 0 auto;
  /*      background-color:#ccc;
      padding:5px;
  */
    }

    .search-box {
      margin:.5rem 0;
      margin-top: 0px;
      text-align: center;
    }

    #search {
      width: 100%;
      max-width: 380px;
      padding: 10px 14px;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
    }

    .info {
      margin:.7rem .7rem;
      font-weight:bold;
    }
    
    .table-wrapper {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    table {
      width: auto;
      border-collapse: collapse;
      background: white;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
      margin: auto;
    }

    th, td {
      padding: 6px 3px;
      text-align: left;
      font-size: 1.2rem;
      /* border-bottom: 1px solid #eee; */
    }

    th {
      /* background: #2c5282; */
      background: #bb0000;
      color: white;
      font-weight: 600;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    tr:nth-child(even) {
      background: #eeeeee;
    }

    .deceased-yes {
      color: #BB0000;
      font-weight: 600;
    }

    .deceased-no {
      color: #2f855a;
    }

    .nodata {
      text-align: center;
      padding: 3rem 1rem;
      color: #718096;
      font-style: italic;
    }

    .dod-unknown {
      color: #718096;
      font-style: italic;
    }

    @media (max-width: 600px) {
      th, td, a {
        padding: 6px 3px;
        font-size: 1rem;
      }

      h1 {
        font-size: 1.4rem;
      }
    }
