    @font-face {
  font-family:"Segoe UI";
  src:url('../fonts/PixelOperator.ttf');
}

    body {
      background: #f0f0f0 !important;
      color: #2e3440;
      font-family: 'Segoe UI', Courier, monospace;
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
      padding: 40px 20px;
      display: flex;
      justify-content: center;
    }

a {
  text-decoration:none;
  color:rgb(109,98,72);
}
a:hover {
  text-decoration:underline;
  color:#000;
  cursor: default;
  position:relative;
  left:1.5px;
  top:1.5px;
}
a:visited {
  text-decoration:none;
  color:rgb(109,98,72);
}

    .log-container {
      max-width: 650px;
      width: 100%;
    }

    .log-header {
      margin-bottom: 40px;
      border-bottom: 1px dashed #d8dee9;
      padding-bottom: 25px;
    }

    .nav-menu {
      margin-top: 15px;
      font-size: 13px;
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
      width: 100%;
    }

    .nav-menu a {
      font-weight: bold;
      text-align: center;
      flex-grow: 1;
    }

    .filter-group {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
      margin-top: 20px;
    }

    .filter-group label {
      display: block;
      background: #e1e1e1;
      border: 1px solid #b8b8b8;
      border-radius: 3px;
      padding: 4px 0;
      font-size: 12px;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      user-select: none;
    }

    .filter-group label:has(input:checked) {
      background: #f0f0f0;
      border-color: #7a7a7a;
      box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
    }

    .filter-group input[type="radio"] {
      display: none;
    }

    .month-title {
      text-align: center;
      margin: 50px 0 20px 0;
      font-size: 16px;
      letter-spacing: 3px;
      color: #4c566a;
      border-bottom: 1px solid #e5e9f0;
      padding-bottom: 5px;
    }

    .media-card {
      background-color: #ffffff;
      border: 1px solid #e5e9f0;
      border-radius: 4px;
      margin-bottom: 25px;
      padding: 15px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .media-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      border-bottom: 1px dashed #e5e9f0;
      padding-bottom: 10px;
      margin-bottom: 10px;
    }

    .media-info {
      flex-grow: 1;
    }

    .media-title {
      font-weight: bold;
      font-size: 15px;
      color: #2e3440;
      text-transform: uppercase;
    }

    .media-meta {
      font-size: 12px;
      color: #4c566a;
      margin-top: 4px;
    }

    .media-genre {
      color: #bf616a;
    }

    .fav-tag {
      display: inline-block;
      background-color: #ffeef2;
      color: #bf616a;
      font-size: 11px;
      padding: 1px 6px;
      border-radius: 3px;
      margin-left: 6px;
      font-weight: bold;
      border: 1px solid #bf616a;
    }

    .media-rating-date {
      text-align: right;
      font-size: 12px;
      color: #a3be8c;
      white-space: nowrap;
    }


    .media-review {
      font-size: 13px;
      color: #4c566a;
      margin: 0;
    }

    .media-review p {
      margin: 0 0 10px 0;
    }
    
    .media-review p:last-child {
      margin-bottom: 0;
    }