 body {
      font-family: sans-serif;
      margin: 2rem 50px;
    }

    @media (max-width: 470px) {
      body {
        margin: 2rem 5px;
      }
    }

    #search-container {
      position: relative;
    }

    #suggestions {
      border: 1px solid #ccc;
      max-height: 200px;
      overflow-y: auto;
      width: 100%;
      background: #fff;
    }

    .suggestion {
      padding: 8px;
      cursor: pointer;
    }

    .suggestion:hover {
      background-color: #eee;
    }

    .suggestion-thumb {
      height: 80px;
      float: left;
      margin-right: 5px;
    }

    .clear {
      clear: both;
    }

    #details {
      margin-top: 1rem;
    }

    .section {
      margin-top: 1.5rem;
    }

    .images {
      display: flex;
    }

    .images>div {
      display: flex;
      flex-direction: column;
      align-self: center;
      align-items: center;
      margin-right: 25px;
    }

    .images img {
      max-width: 200px;
      margin-right: 10px;
      margin-bottom: 10px;
    }

    .obs-photos {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-column-gap: 15px;
      grid-row-gap: 30px;
    }

    .obs-photos a {
      width: 100%;
      height: 100%;
    }

    .obs-photos div {
      width: 200px;
      height: 200px;
      background-size: contain;
      background-position: center center;
      background-repeat: no-repeat;
      text-align: center;
    }

    @media (max-width: 470px) {
      .obs-photos {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
      }

      .obs-photos div {
        width: 180px;
      }

      table td {
        min-width: 92vw;
        max-width: 92vw;
        width: 92vw;
        word-wrap: break-word;
      }
    }

    .scroll-x {
      overflow-x: scroll;
    }

    table {
      border-collapse: collapse;
      width: 100%;
    }

    th,
    td {
      text-align: left;
      padding: 6px;
      border: 1px solid #ccc;
    }


    th {
      background-color: #f2f2f2;
    }

    .to-top {
      position: fixed;
      bottom: 6px;
      right: 6px;
      width: 50px;
      height: 50px;
      border: 1px solid #333;
      border-radius: 5px;
      color: #fff;
      background-color: #555;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
    }