/* Extracted from dashboard.html style block 1 */
@keyframes slideIn { from { transform: translateX(100px); opacity:0; } to { transform: translateX(0); opacity:1; } }
    .dashboard-head {
      display: flex; align-items: center; justify-content: space-between; gap: 18px;
      margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
    }
    .dashboard-title h1 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
    .dashboard-title p { color: var(--text-muted); font-size: 14px; }
    .quick-actions { display: grid; grid-template-columns: repeat(4, minmax(140px, 1fr)); gap: 10px; min-width: 560px; }
    .quick-action {
      display: flex; align-items: center; gap: 10px; padding: 12px 14px;
      border: 1px solid var(--border); border-radius: 8px; background: var(--surface);
      color: var(--text-2); box-shadow: var(--shadow-sm); transition: border-color .18s, transform .18s, box-shadow .18s;
    }
    .quick-action:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
    .quick-action.resume-draft { border-color: rgba(245, 158, 11, .35); background: #fffbeb; color: #92400e; }
    .quick-action.resume-draft .quick-icon { background: #fef3c7; color: #b45309; }
    .quick-icon {
      width: 34px; height: 34px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
      background: var(--primary-light); color: var(--primary-dark); flex-shrink: 0;
    }
    .quick-icon svg { width: 18px; height: 18px; }
    @media (max-width: 1024px) {
      .dashboard-head { flex-direction: column; align-items: stretch; }
      .quick-actions { min-width: 0; }
    }
    @media (max-width: 640px) {
      .dashboard-head { gap: 14px; margin-bottom: 16px; padding-bottom: 16px; }
      .dashboard-title h1 { font-size: 22px; }
      .quick-actions { grid-template-columns: repeat(2, minmax(98px, 1fr)); min-width: 0; gap: 8px; }
      .quick-action { flex-direction: column; align-items: flex-start; padding: 10px; font-size: 12px; }
      .quick-icon { width: 30px; height: 30px; }
      .doc-toolbar { width: 100%; display: grid !important; grid-template-columns: 1fr 1fr; gap: 8px !important; }
      .doc-toolbar .form-control { width: 100% !important; }
      .doc-toolbar .btn { width: 100%; }
      #sub-info > div { align-items: flex-start !important; flex-direction: column; grid-template-columns: 1fr !important; gap: 10px !important; padding: 14px !important; }
      #sub-info .btn { width: 100%; margin-left: 0 !important; }
      #select-bar { align-items: stretch !important; }
      #select-bar > div { width: 100%; flex-wrap: wrap; }
    }
    @media (max-width: 420px) {
      .quick-actions { grid-template-columns: 1fr; }
      .quick-action { flex-direction: row; align-items: center; }
      .doc-toolbar { grid-template-columns: 1fr; }
    }

/* Extracted from dashboard.html style block 2 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
    @keyframes slideUp { from { transform: translateY(30px); } to { transform: translateY(0); } }
    .m-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      width: 100%;
      max-width: 600px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      color: #0f172a;
      font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    }
    .m-header {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .m-header h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #0f172a;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .m-close {
      background: none;
      border: none;
      color: #64748b;
      font-size: 16px;
      cursor: pointer;
      padding: 6px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .m-close:hover {
      color: #0f172a;
      background: rgba(0, 0, 0, 0.05);
    }
    .m-body {
      padding: 24px;
    }
    .m-subtitle {
      font-size: 13px;
      color: #475569;
      margin: 0 0 24px 0;
      font-weight: 500;
      text-align: center;
    }
    .m-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .m-card-item {
      background: #f8fafc;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      padding: 24px 16px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s ease;
      text-align: center;
    }
    .m-card-item:hover {
      border-color: #6366f1;
      background: rgba(99, 102, 241, 0.04);
      transform: translateY(-2px);
    }
    .m-icon {
      font-size: 40px;
      margin-bottom: 4px;
      transition: transform 0.2s;
    }
    .m-card-item:hover .m-icon {
      transform: scale(1.1);
    }
    .m-label {
      font-size: 13px;
      font-weight: 700;
      color: #0f172a;
    }
    .m-desc {
      font-size: 10px;
      color: #64748b;
      margin-top: 4px;
      font-weight: 500;
    }
    .orientation-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }
    .orientation-option {
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: #f8fafc;
      border-radius: 12px;
      padding: 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      color: #0f172a;
      transition: all .2s ease;
    }
    .orientation-option.active {
      border-color: #4f46e5;
      background: #eef2ff;
      color: #4338ca;
      box-shadow: 0 0 0 3px rgba(79, 70, 229, .12);
    }
    .orientation-icon {
      width: 34px;
      height: 24px;
      border: 2px solid currentColor;
      border-radius: 4px;
      background: #fff;
      flex: 0 0 auto;
    }
    .orientation-icon.portrait {
      width: 24px;
      height: 34px;
    }
/* Extracted inline styles from dashboard.html */
.dashboard-inline-1 { display:none; }
.dashboard-inline-2 { margin-bottom:24px; }
.dashboard-inline-3 { margin-top:0; }
.dashboard-inline-4 { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; flex-wrap:wrap; gap:10px; }
.dashboard-inline-5 { font-size:18px; font-weight:700; }
.dashboard-inline-6 { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.dashboard-inline-7 { width:180px; padding:8px 14px; }
.dashboard-inline-8 { width:200px; padding:8px 14px; }
.dashboard-inline-9 { display:none; background:linear-gradient(135deg,#eef2ff,#f5f3ff); border:1px solid #c7d2fe; border-radius:12px; padding:12px 16px; margin-bottom:16px; display:none; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between; }
.dashboard-inline-10 { display:flex; align-items:center; gap:10px; font-size:14px; color:#4338ca; }
.dashboard-inline-11 { background:none;border:none;color:#6366f1;cursor:pointer;font-size:13px;font-weight:600;text-decoration:underline; }
.dashboard-inline-12 { background:none;border:none;color:#64748b;cursor:pointer;font-size:13px; }
.dashboard-inline-13 { display:flex;gap:8px; }
.dashboard-inline-14 { text-align:center; padding:60px; }
.dashboard-inline-15 { margin:auto; }
.dashboard-inline-16 { margin-bottom:24px; color:var(--text-muted); }
.dashboard-inline-17 { display:flex; gap:12px; justify-content:flex-end; }
.dashboard-inline-18 { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:20px; padding:20px 24px;
                  background:rgba(255, 255, 255, 0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
                  border-radius:var(--radius-lg); border:1px solid rgba(226, 232, 240, 0.8); box-shadow: var(--shadow); }
.dashboard-inline-19 { font-size:13px; padding:8px 18px; border-radius:12px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); font-weight:700; }
.dashboard-inline-20 { display:flex;justify-content:space-between;gap:12px;font-size:14px;color:var(--text-2);margin-bottom:8px; }
.dashboard-inline-21 { color:var(--primary); font-weight:700; }
.dashboard-inline-22 { color:#10b981; font-weight:700; }
.dashboard-inline-23 { height:10px;background:#e2e8f0;border-radius:999px;overflow:hidden;box-shadow:inset 0 1px 3px rgba(0,0,0,0.08); }
.dashboard-inline-24 { font-size:12px;color:var(--text-soft);margin-top:6px;font-weight:500; }
.dashboard-inline-25 { color:var(--text); }
.dashboard-inline-26 { margin-left:auto; border-radius:10px; }
.dashboard-inline-27 { position:relative; overflow:hidden; }
.dashboard-inline-28 { background:rgba(99,102,241,0.08); color:#4f46e5; }
.dashboard-inline-29 { position:relative; overflow:hidden; }
.dashboard-inline-30 { background:rgba(16,185,129,0.08); color:#10b981; }
.dashboard-inline-31 { position:relative; overflow:hidden; }
.dashboard-inline-32 { background:rgba(14,165,233,0.08); color:#0ea5e9; }
.dashboard-inline-33 { position:relative; overflow:hidden; }
.dashboard-inline-34 { background:rgba(245,158,11,0.08); color:#d97706; }
.dashboard-inline-35 { text-align:center; padding:60px; color:var(--text-soft); background:var(--surface); border-radius:var(--radius-lg); border:1px dashed var(--border-strong); }
.dashboard-inline-36 { font-size:48px; margin-bottom:16px; animation: floatAnim 4s ease-in-out infinite; }
.dashboard-inline-37 { font-size:16px; font-weight:600; color:var(--text-2); }
.dashboard-inline-38 { font-size:13px; color:var(--text-muted); margin-top:4px; }
.dashboard-inline-39 { margin-top:20px; border-radius:10px; }
.dashboard-inline-40 { border-radius:16px; border:1px solid var(--border); box-shadow:var(--shadow-sm); overflow:hidden; transition:all 0.25s var(--ease); background:var(--surface); }
.dashboard-inline-41 { position:relative; aspect-ratio:4/3; background:linear-gradient(135deg,#f8fafc,#f1f5f9); display:flex; align-items:center; justify-content:center; overflow:hidden; border-bottom:1px solid var(--border); }
.dashboard-inline-42 { position:absolute;top:10px;right:10px;z-index:2;width:28px;height:28px;background:rgba(255,255,255,0.95);border-radius:8px;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 10px rgba(0,0,0,0.1); border:1px solid rgba(0,0,0,0.05); transition:transform 0.15s; }
.dashboard-inline-43 { width:16px;height:16px;cursor:pointer;accent-color:#6366f1; }
.dashboard-inline-44 { width:100%; height:100%; object-fit:cover; transition:transform 0.3s; }
.dashboard-inline-45 { font-size:48px; filter:drop-shadow(0 4px 10px rgba(0,0,0,0.05)); }
.dashboard-inline-46 { position:absolute;top:10px;left:10px; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.1); }
.dashboard-inline-47 { padding:16px; }
.dashboard-inline-48 { margin-bottom:8px; }
.dashboard-inline-49 { font-size:15px; font-weight:700; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dashboard-inline-50 { font-size:12px; color:var(--text-soft); font-weight:500; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dashboard-inline-51 { margin-top:6px; display:flex; align-items:center; justify-content:between; width:100%; }
.dashboard-inline-52 { color:var(--text-muted); font-weight:500; }
.dashboard-inline-53 { padding:2px 8px; margin-left:auto; border-radius:6px; font-family:monospace; font-size:10px; }
.dashboard-inline-54 { display:grid; grid-template-columns: repeat(4, 1fr); gap:6px; margin-top:14px; }
.dashboard-inline-55 { padding:6px 2px; font-size:11px; font-weight:700; border-radius:8px; text-align:center; }
.dashboard-inline-56 { display:none; }
.dashboard-inline-57 { padding:6px 2px; font-size:11px; font-weight:700; border-radius:8px; text-align:center; }
.dashboard-inline-58 { display:none; }
.dashboard-inline-59 { padding:6px 2px; font-size:11px; font-weight:700; border-radius:8px; }
.dashboard-inline-60 { grid-column: span 2; padding: 20px 16px; flex-direction: row; gap: 14px; }
.dashboard-inline-61 { font-size: 32px; margin-bottom: 0; }
.dashboard-inline-62 { text-align: left; display: flex; flex-direction: column; }
.dashboard-inline-63 { font-size: 13px; }
.dashboard-inline-64 { margin-top: 2px; }
