 /* Reset margins and make full-page */
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }

p {
    margin-top:10px;
    margin-bottom:10px;
}
  /* Tab buttons at the top */
  .tab-buttons {
    display: flex;
    background-color: #333;
  }

  .tab-buttons button {
    flex: 1;
    padding: 15px;
    cursor: pointer;
    background-color: #333;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'inconsolata', monospace !important;
    transition: background-color 0.3s;
  }

  .tab-buttons button:hover {
    background-color: #555;
  }

  .tab-buttons button.active {
    background-color: #6A4A45;
  }

  /* Tab content takes full page */
  .tab-content {
    display: none;
    height: calc(100vh - 50px); /* full height minus tab buttons */
    padding: 20px;
    background-color: #000;
    overflow-y: auto;
  }

  .tab-content.active {
    display: block;
  }

/* General table styling */
.my-table {
  border-collapse: collapse;   /* remove double borders */
  width: 100%;
}

/* Header row styling */
.my-table th {
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: left;
}

/* Cell styling */
.my-table td {
  border: 1px solid #333;
  padding: 5px;
  vertical-align: top;
}

/* Column widths */
.my-table th:nth-child(1),
.my-table td:nth-child(1) {
  width: 18%;  /* fixed width for column 1 */
}

.my-table th:nth-child(2),
.my-table td:nth-child(2) {
  width: 80%;  /* fixed width for column 2 */
  font-size:18px;
}

.my-table img {
    max-width: 100%;   /* prevents overflow */
    height: auto;      /* keeps aspect ratio */
    display: block;    /* removes bottom spacing */
    border-radius: 8px; /* optional rounded corners */
    filter: sepia(0%);
  }




.title {
    font-family:'stussy'; 
    letter-spacing:2px; 
    font-size:27px;
    color:#635D66;
}

  .rating {
    color: #FFDC9D;
    font-size: 13px;
    font-weight: bold; 
  }

   .log {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 10px;
      width: 100%;
    }

    .column {
      background: #000;
      padding: 2px;
      text-align: center;
      border: none;
    }

.log img {
    max-width: 100%;   /* prevents overflow */
    height: auto;      /* keeps aspect ratio */
    display: block;    /* removes bottom spacing */
    border-radius: 8px; /* optional rounded corners */
    filter: grayscale(70%);
  }
