 body { 
      font-family: monospace; 
      padding: 20px; 
      background: #eee;
      margin-bottom: 120px;
      zoom: 1.5;
    }
    h1 { margin-bottom: 10px }
    .project { 
      border: 1px solid #999; 
      padding: 10px; 
      margin-bottom: 10px; 
      display: flex; 
      align-items: center; 
      gap: 10px;
      background: #fff;
    }
    .project img { width: 64px; height: 64px; object-fit: cover }
    .project button { margin-left: auto }
    .project .meta {
      font-size: 12px;
      color: #666;
      margin-top: 4px;
    }
    .project .dates {
      font-size: 8px;
      color: #919191;
      margin-top: 4px;
    }
    .project .tags {
      margin-top: 4px;
    }
    .project .tags span {
      padding: 2px 6px;
      margin-right: 4px;
      font-size: 10px;
    }

    /* floating sort bar */
    .sort-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #f0f0f0;
      border-top: 2px solid #000;
      padding: 10px 20px;
      max-height: 100px;
      overflow-y: auto;
      z-index: 1000;
    }
    .sort-controls {
      display: flex;
      gap: 15px;
      align-items: center;
      flex-wrap: wrap;
    }
    .sort-section {
      display: flex;
      flex-direction: column;
      gap: 5px;
      border-left: 1px solid #ccc;
      padding-left: 10px;
      padding-right: 10px;
    }
    .sort-section label {
      font-size: 12px;
      font-weight: bold;
    }
    .tags-section {
      display: flex;
      flex-direction: column;
      max-width: 400px;
    }
    .tags-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      max-height: 60px;
      overflow-y: auto;
    }
    .tag-checkbox {
      display: flex;
      align-items: center;
      gap: 3px;
      font-size: 11px;
      white-space: nowrap;
      cursor: pointer;
      padding: 2px 6px;
      border: 1px solid transparent;
      border-radius: 3px;
      min-width: 60px;
      position: relative;
    }
    .tag-checkbox:hover {
      background: #f5f5f5;
    }
    .tag-checkbox input {
      display: none;
    }
    .tag-checkbox .checkmark {
      width: 12px;
      height: 12px;
      display: inline-block;
      text-align: center;
      line-height: 10px;
      font-size: 9px;
      margin-right: 3px;
    }
    .tag-checkbox input:checked + .checkmark {
      color: #007acc;
      font-weight: bold;
    }
    .tag-checkbox input:checked + .checkmark::before {
      content: "#";
    }
    .tag-checkbox:has(input:checked) {
      border-color: #007acc;
      background: #f0f8ff;
    }
    .author-filter {
      min-width: 120px;
    }
    .date-sort {
      min-width: 100px;
    }
    #loadingScreen {
      position: fixed;
      top:0;left:0;
      width:100%;height:100%;
      background: white;
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:2000;
      cursor: wait;
    }
    #loadingScreen img {
      width:150px;
      height:150px;
      object-fit:contain;
    }
    #loadingScreen.fadeout {
      opacity:0;
      transition: opacity 0.05s linear;
      pointer-events:none;
    }