/* FILE ROWS */
    .files-list {
      display: grid;
      gap: 7px;
      margin-top: 12px;
    }

    .file-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 15px;
      border-radius: var(--r2);
      background: rgba(6, 14, 30, .85);
      border: 1px solid var(--sk2);
    }

    .file-emoji {
      font-size: 20px;
      flex-shrink: 0;
      padding-top: 2px;
    }

    .file-info {
      flex: 1;
      min-width: 0;
    }

    .file-name {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--tx);
      word-break: break-all;
    }

    .file-meta {
      font-size: 10.5px;
      color: var(--mu);
      margin-top: 2px;
    }

    .file-prev {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10.5px;
      color: #cbd5e1;
      line-height: 1.6;
      margin-top: 7px;
      max-height: 400px;
      overflow: auto;
      white-space: pre;
      background: rgba(2, 6, 18, .5);
      border-radius: 6px;
      padding: 12px;
      border: 1px solid rgba(59, 130, 246, 0.1);
      scrollbar-width: thin;
      scrollbar-color: #3b82f6 #0f172a;
    }

    .file-prev::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }

    .file-prev::-webkit-scrollbar-thumb {
      background-color: #3b82f6;
      border-radius: 10px;
    }

    .file-prev::-webkit-scrollbar-track {
      background: #0f172a;
    }

    .file-st {
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
      flex-shrink: 0;
    }
