    .card {
      background: var(--card);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 18px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .card:hover {
      box-shadow: var(--shadow)
    }

    .card-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      letter-spacing: -0.01em;
    }

    .docs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 12px;
    }

    .student-tile-grid,
    .doc-folder-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 12px;
    }

    .student-tile,
    .doc-folder-tile {
      min-height: 194px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: #fff;
      padding: 11px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      transition: var(--transition);
      text-align: left;
    }

    .student-tile:hover,
    .doc-folder-tile:hover {
      border-color: var(--primary-light);
      box-shadow: var(--shadow);
      transform: translateY(-1px);
    }

    .student-tile-roc {
      font-size: 11px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: 0;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    }

    .student-tile-head {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .student-tile-avatar {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      object-fit: cover;
      border: 1px solid #dbeafe;
      background: #f1f5f9;
      flex-shrink: 0;
    }

    .student-tile-avatar-fallback {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 800;
      color: #1e3a8a;
      background: #dbeafe;
    }

    .student-tile-head-meta {
      display: flex;
      flex-direction: column;
      min-width: 0;
      gap: 1px;
    }

    .student-tile-name {
      font-size: 13px;
      font-weight: 800;
      color: var(--text);
      line-height: 1.2;
      word-break: break-word;
    }

    .student-tile-line {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.2;
      word-break: break-word;
    }

    .student-tile-plan {
      font-size: 12px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.2;
    }

    .student-tile-tags {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-top: 2px;
    }

    .student-tile-doc-state {
      font-size: 11px;
      color: var(--muted);
      margin-top: auto;
    }

    .student-id-card {
      border: 1px solid var(--border);
      border-radius: 8px;
      background: linear-gradient(180deg, #fff, #f8fafc);
      padding: 14px;
    }

    .doc-card {
      border: 1px solid var(--border);
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      border-radius: 12px;
      padding: 14px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .doc-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-1px);
    }

    .doc-card-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .doc-card-file {
      min-height: 18px;
      margin-bottom: 10px;
      font-size: 11px;
      color: var(--muted);
      word-break: break-word;
    }

    .doc-section-title {
      margin: 6px 0 10px;
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .stat-card {
      background: var(--card);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
    }

    .stat-card:hover {
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08), 0 3px 6px rgba(15, 23, 42, 0.02);
      transform: translateY(-2px);
    }

    .stat-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .stat-icon.blue {
      background: #dbeafe;
      color: #1d4ed8
    }

    .stat-icon.green {
      background: #d1fae5;
      color: #059669
    }

    .stat-icon.amber {
      background: #fef3c7;
      color: #d97706
    }

    .stat-icon.red {
      background: #fee2e2;
      color: #dc2626
    }

    .stat-icon.purple {
      background: #ede9fe;
      color: #7c3aed
    }

    .stat-icon.indigo {
      background: #e0e7ff;
      color: #4338ca
    }

    .stat-icon.teal {
      background: #ccfbf1;
      color: #0d9488
    }

    .stat-val {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      letter-spacing: -0.02em
    }

    .stat-lbl {
      font-size: 12px;
      color: var(--muted);
      margin-top: 3px;
      font-weight: 500
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-size: 13px;
      font-weight: 600;
      transition: var(--transition);
      font-family: inherit;
      letter-spacing: -0.01em;
    }

    .btn-primary {
      background: var(--primary-light);
      color: #fff
    }

    .btn-primary:hover {
      background: var(--primary-medium);
      box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25)
    }

    .btn-success {
      background: var(--success);
      color: #fff
    }

    .btn-success:hover {
      background: #047857
    }

    .btn-danger {
      background: var(--danger);
      color: #fff
    }

    .btn-danger:hover {
      background: #b91c1c
    }

    .btn-warn {
      background: var(--warn);
      color: #fff
    }

    .btn-warn:hover {
      background: #b45309
    }

    .btn-outline {
      background: #fff;
      color: var(--primary);
      border: 1px solid var(--border)
    }

    .btn-outline:hover {
      background: #f8fafc;
      border-color: #cbd5e1
    }

    .btn-sm {
      padding: 5px 10px;
      font-size: 12px
    }

    .btn-ghost {
      background: transparent;
      color: var(--muted);
      padding: 6px 10px
    }

    .btn-ghost:hover {
      background: #f1f5f9;
      color: var(--text)
    }

    .analysis-switch {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    }

    .analysis-switch button {
      border: none;
      background: transparent;
      color: var(--muted);
      padding: 7px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
    }

    .analysis-switch button:hover {
      color: var(--text);
      background: rgba(37, 99, 235, 0.08);
    }

    .analysis-switch button.active {
      color: #fff;
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      box-shadow: 0 4px 10px rgba(37, 99, 235, 0.28);
    }

    .dashboard-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 11px;
      font-weight: 700;
      color: var(--muted);
      background: #f8fafc;
    }

    .dashboard-kpi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 14px;
      margin-top: 12px;
      margin-bottom: 8px;
    }

    .dashboard-kpi-card {
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border: 1px solid #dbe7ff;
      box-shadow: 0 6px 16px rgba(37, 99, 235, 0.08);
    }

    .new-admissions-panel {
      border: 1px solid #bfdbfe;
      border-radius: 14px;
      padding: 14px;
      background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 46%),
        radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.12), transparent 44%),
        linear-gradient(135deg, #f8fbff 0%, #f0fdf4 100%);
      box-shadow: 0 10px 24px rgba(30, 64, 175, 0.08);
    }

    .new-admissions-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
    }

    .new-admissions-title {
      font-size: 15px;
      font-weight: 800;
      color: #0f172a;
    }

    .new-admissions-subtitle {
      font-size: 12px;
      color: #475569;
      margin-top: 2px;
    }

    .new-admissions-badge {
      min-width: 44px;
      height: 44px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 900;
      color: #1d4ed8;
      background: #dbeafe;
      border: 1px solid #93c5fd;
    }

    .new-admissions-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin-bottom: 10px;
    }

    .new-admissions-stat {
      background: #ffffff;
      border: 1px solid #dbeafe;
      border-radius: 10px;
      padding: 8px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      font-size: 11px;
      color: #475569;
    }

    .new-admissions-stat b {
      font-size: 14px;
      color: #0f172a;
    }

    .new-admissions-list {
      display: grid;
      gap: 6px;
    }

    .new-admissions-row {
      width: 100%;
      border: 1px solid #cbd5e1;
      border-radius: 10px;
      padding: 8px 10px;
      background: #ffffff;
      text-align: left;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: 12px;
    }

    .new-admissions-row:hover {
      border-color: #60a5fa;
      background: #f8fbff;
      transform: translateY(-1px);
    }

    .new-admissions-name {
      font-weight: 700;
      color: #0f172a;
    }

    .new-admissions-meta {
      color: #64748b;
      font-size: 11px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .new-admissions-empty {
      padding: 10px;
      border-radius: 10px;
      border: 1px dashed #cbd5e1;
      color: #64748b;
      font-size: 12px;
      text-align: center;
      background: #ffffff;
    }

    .donut-shell {
      width: 194px;
      height: 194px;
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
      box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08), 0 10px 22px rgba(15, 23, 42, 0.12);
      border: 1px solid #dbeafe;
    }

    .donut-hole {
      position: absolute;
      inset: 32px;
      border-radius: 50%;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8px;
    }

    .legend-list {
      flex: 1;
      min-width: 220px;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      padding: 10px 12px;
      background: #ffffff;
    }

    .mini-bar-track {
      height: 8px;
      background: var(--border);
      border-radius: 999px;
      overflow: hidden;
    }

    .mini-bar-fill-blue {
      height: 100%;
      background: linear-gradient(90deg, #2563eb, #0ea5e9);
    }

    .mini-bar-fill-orange {
      height: 100%;
      background: linear-gradient(90deg, #f97316, #ef4444);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px
    }

    th {
      background: #f8fafc;
      padding: 11px 14px;
      text-align: left;
      font-weight: 600;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    td {
      padding: 11px 14px;
      border-bottom: 1px solid #f1f5f9;
      color: var(--text);
      vertical-align: top;
      overflow-wrap: anywhere;
    }

    tr:hover td {
      background: #fafbfc
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 3px 9px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .tag-green {
      background: #d1fae5;
      color: #065f46
    }

    .tag-red {
      background: #fee2e2;
      color: #991b1b
    }

    .tag-amber {
      background: #fef3c7;
      color: #92400e
    }

    .tag-blue {
      background: #dbeafe;
      color: #1e40af
    }

    .tag-purple {
      background: #ede9fe;
      color: #5b21b6
    }

    .tag-gray {
      background: #f1f5f9;
      color: #475569
    }

    .tag-teal {
      background: #ccfbf1;
      color: #115e59
    }

    @keyframes pulse-warn {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.3)
      }

      50% {
        box-shadow: 0 0 0 4px rgba(217, 119, 6, 0)
      }
    }

    @keyframes pulse-danger {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.3)
      }

      50% {
        box-shadow: 0 0 0 4px rgba(220, 38, 38, 0)
      }
    }

    .tag-pulse-warn {
      animation: pulse-warn 2s infinite
    }

    .tag-pulse-danger {
      animation: pulse-danger 2s infinite
    }

    .input-row {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
      align-items: center;
      flex-wrap: wrap
    }

    input:not([type]),
    input[type=text],
    input[type=email],
    input[type=number],
    input[type=password],
    input[type=date],
    select,
    textarea {
      padding: 9px 13px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 13px;
      color: var(--text);
      background: #fff;
      outline: none;
      font-family: inherit;
      transition: var(--transition);
    }

    .password-field {
      position: relative;
      display: flex;
      align-items: center;
    }

    .password-field input {
      width: 100%;
      padding-right: 42px !important;
    }

    .password-toggle {
      position: absolute;
      right: 8px;
      width: 30px;
      height: 30px;
      border: 0;
      border-radius: 8px;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .password-toggle:hover {
      background: var(--bg);
      color: var(--primary);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--primary-light);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    label {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      display: block;
      margin-bottom: 5px
    }

    .form-group {
      margin-bottom: 16px
    }

    .filter-grid {
      display: grid;
      gap: 10px;
      align-items: center;
    }

    .filter-grid input,
    .filter-grid select {
      width: 100%;
    }

    .filter-grid-2 {
      grid-template-columns: 2fr 1fr;
    }

    .filter-grid-3 {
      grid-template-columns: 2fr 1fr 1fr;
    }

    .filter-grid-4 {
      grid-template-columns: 1.7fr 1fr 1fr 1fr;
    }

    .search-field {
      position: relative;
      width: 100%;
    }

    .search-field input {
      width: 100%;
      padding-left: 38px;
    }

    .search-icon {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      pointer-events: none;
    }

    .filter-summary {
      font-size: 12px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }
