@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #f5f4f0;
      --surface: #ffffff;
      --border: rgba(0,0,0,0.09);
      --border-hover: rgba(0,0,0,0.18);
      --text-primary: #1a1a18;
      --text-secondary: #6b6b65;
      --text-muted: #a0a09a;
      --accent: #1a5c3a;
      --accent-light: #e8f2ec;
      --accent-text: #0f3d26;
      --badge-bg: #f0efe9;
      --badge-text: #6b6b65;
      --btn-border: rgba(0,0,0,0.13);
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 3rem 1.25rem 4rem;
    }

    .wrapper {
      width: 100%;
      max-width: 640px;
    }

    /* Header */
    .header {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 1.5rem;
    }

    .logo-wrap {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 6px;
    }

    .logo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .header-text h1 {
      font-family: "Google Sans Flex", sans-serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1.2;
    }

    .header-text p {
      font-size: 13px;
      color: var(--text-secondary);
      margin-top: 3px;
      font-weight: 300;
      letter-spacing: 0.01em;
    }

    /* Breadcrumb */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 2rem;
      font-size: 13px;
      color: var(--text-muted);
    }

    .breadcrumb a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.15s;
    }

    .breadcrumb a:hover { color: var(--accent); }

    .breadcrumb span { color: var(--text-muted); }

    .breadcrumb .current {
      color: var(--text-primary);
      font-weight: 500;
    }

    /* Section label */
    .section-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
    }

    /* Document list */
    .doc-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .doc-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      animation: fadeUp 0.4s ease both;
    }

    .doc-item:nth-child(1) { animation-delay: 0.05s; }
    .doc-item:nth-child(2) { animation-delay: 0.09s; }
    .doc-item:nth-child(3) { animation-delay: 0.13s; }
    .doc-item:nth-child(4) { animation-delay: 0.17s; }
    .doc-item:nth-child(5) { animation-delay: 0.21s; }
    .doc-item:nth-child(6) { animation-delay: 0.25s; }
    .doc-item:nth-child(7) { animation-delay: 0.29s; }
    .doc-item:nth-child(8) { animation-delay: 0.33s; }
    .doc-item:nth-child(9) { animation-delay: 0.37s; }
    .doc-item:nth-child(10) { animation-delay: 0.41s; }
    .doc-item:nth-child(11) { animation-delay: 0.44s; }
    .doc-item:nth-child(12) { animation-delay: 0.48s; }
    .doc-item:nth-child(13) { animation-delay: 0.52s; }
    .doc-item:nth-child(14) { animation-delay: 0.56s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .doc-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: #fef2f2;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .doc-icon svg {
      width: 17px;
      height: 17px;
      stroke: #c0392b;
    }

    .doc-info {
      flex: 1;
      min-width: 0;
    }

    .doc-title {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-primary);
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .doc-sub {
      font-size: 12px;
      color: var(--text-secondary);
      margin-top: 2px;
      font-weight: 300;
    }

    .doc-actions {
      display: flex;
      gap: 6px;
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 8px;
      border: 1px solid var(--btn-border);
      background: var(--badge-bg);
      color: var(--text-secondary);
      text-decoration: none;
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
      white-space: nowrap;
    }

    .btn:hover {
      background: var(--surface);
      border-color: var(--border-hover);
      color: var(--text-primary);
    }

    .btn svg {
      width: 13px;
      height: 13px;
      stroke: currentColor;
    }

    .btn.primary {
      background: var(--accent-light);
      border-color: transparent;
      color: var(--accent-text);
    }

    .btn.primary:hover {
      background: #d4eadc;
      color: var(--accent);
    }

    /* Footer */
    .footer {
      margin-top: 2.5rem;
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 300;
    }

    @media (max-width: 520px) {
      body { padding: 2rem 1rem 3rem; }
      .header-text h1 { font-size: 19px; }
      .doc-title { font-size: 12.5px; }
      .btn span { display: none; }
      .btn { padding: 6px 9px; }
    }