/* Genesis Recruiter Portal — ERP Layout */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
.grp-shell *, .grp-login-wrap * { box-sizing: border-box; }
.grp-shell { display: flex; height: 100vh; overflow: hidden; font-family: Inter, sans-serif; background: #f1f5f9; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9000; }

/* ── Login Page ───────────────────────────────────────────────────────────── */
/* ── Login Page ───────────────────────────────────────────────────────────── */
.grp-login-wrap { 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    padding: 40px 20px; 
    background: radial-gradient(circle at top left, #1e293b 0%, #0f172a 100%);
    background-image: 
        radial-gradient(at 0% 0%, hsla(220,60%,15%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(190,70%,20%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(210,80%,25%,1) 0, transparent 50%);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.grp-login-wrap::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    pointer-events: none;
}

.grp-login-card { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    border-radius: 24px; 
    padding: 56px 48px; 
    width: 100%; 
    max-width: 440px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 1;
}

.grp-login-logo { text-align: center; margin-bottom: 24px; }
.grp-login-logo img { 
    max-height: 90px; 
    width: auto; 
    margin: 0 auto; 
    display: block; 
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}
.grp-login-logo img:hover { transform: scale(1.05); }

.grp-login-title { 
    font-size: 28px; 
    font-weight: 900; 
    color: #0f172a; 
    text-align: center; 
    margin: 0 0 8px; 
    letter-spacing: -0.5px;
}
.grp-login-sub { 
    color: #64748b; 
    font-size: 14px; 
    text-align: center; 
    margin: 0 0 36px; 
    font-weight: 500;
}

.grp-login-error { 
    background: #fff1f2; 
    border-left: 4px solid #ef4444; 
    border-radius: 8px; 
    padding: 14px 18px; 
    color: #991b1b; 
    font-size: 13px; 
    font-weight: 600; 
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.grp-login-field { margin-bottom: 22px; }
.grp-login-field label { 
    display: block; 
    font-size: 12px; 
    font-weight: 700; 
    color: #334155; 
    text-transform: uppercase; 
    letter-spacing: 0.8px; 
    margin-bottom: 8px; 
}

.grp-login-field input { 
    width: 100%; 
    padding: 14px 18px; 
    border: 2px solid #e2e8f0; 
    border-radius: 12px; 
    font-size: 16px; 
    font-family: inherit; 
    outline: none; 
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

.grp-login-field input:focus { 
    border-color: #3b82f6; 
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.grp-pw-wrap { position: relative; }
.grp-pw-wrap input { padding-right: 52px; }
.grp-pw-eye { 
    position: absolute; 
    right: 14px; 
    top: 50%; 
    transform: translateY(-50%); 
    background: #fff; 
    border: none; 
    cursor: pointer; 
    color: #64748b; 
    display: flex; 
    padding: 6px; 
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.grp-pw-eye:hover { color: #1e293b; background: #f1f5f9; }

.grp-remember { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 14px; 
    color: #475569; 
    margin-bottom: 32px; 
    cursor: pointer; 
    font-weight: 500;
}
.grp-remember input { width: 18px; height: 18px; cursor: pointer; accent-color: #3b82f6; }

.grp-login-btn { 
    width: 100%; 
    padding: 16px; 
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%); 
    color: white; 
    border: none; 
    border-radius: 14px; 
    font-size: 16px; 
    font-weight: 800; 
    font-family: inherit; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.grp-login-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.3);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.grp-login-btn:active { transform: translateY(0); }
.grp-login-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.grp-sidebar { 
    width: 280px; 
    flex-shrink: 0; 
    background: #0f172a;
    background-image: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    box-shadow: 4px 0 24px rgba(0,0,0,0.1);
    z-index: 10;
}
.grp-sidebar-logo { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    padding: 32px 24px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}
.grp-logo-img { height: 48px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.grp-brand { font-size: 17px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.grp-brand-sub { font-size: 11px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 1px; }

.grp-nav { flex: 1; padding: 24px 16px; overflow-y: auto; }
.grp-nav-item { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    padding: 12px 18px; 
    border-radius: 14px; 
    font-size: 14px; 
    font-weight: 600; 
    color: #94a3b8; 
    text-decoration: none; 
    margin-bottom: 6px; 
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
    cursor: pointer; 
    position: relative; 
}
.grp-nav-item:hover { 
    background: rgba(255,255,255,0.05); 
    color: #fff; 
    transform: translateX(4px);
}
.grp-nav-item.active { 
    background: rgba(59, 130, 246, 0.1); 
    color: #3b82f6; 
}
.grp-nav-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 4px;
    background: #3b82f6;
    border-radius: 0 4px 4px 0;
}
.grp-nav-item .material-symbols-outlined { font-size: 22px; transition: transform 0.2s; }
.grp-nav-item:hover .material-symbols-outlined { transform: scale(1.1); }

.grp-nav-divider { 
    font-size: 11px; 
    font-weight: 800; 
    color: #475569; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    padding: 24px 18px 8px; 
}

.grp-sidebar-user { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 20px 24px; 
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05); 
}
.grp-avatar { 
    width: 40px; 
    height: 40px; 
    border-radius: 12px; 
    background: linear-gradient(135deg, #3b82f6, #1e40af); 
    color: white; 
    font-size: 16px; 
    font-weight: 900; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.grp-user-name { font-size: 14px; font-weight: 700; color: #fff; }
.grp-user-role { font-size: 12px; color: #64748b; }
.grp-logout { 
    color: #64748b; 
    display: flex; 
    padding: 8px; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: all 0.2s; 
}
.grp-logout:hover { color: #ef4444; background: rgba(239, 68, 68, 0.1); }

/* ── Topbar & Main ───────────────────────────────────────────────────────── */
.grp-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.grp-topbar { 
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0; 
    padding: 0 32px; 
    height: 72px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    flex-shrink: 0; 
    position: sticky;
    top: 0;
    z-index: 5;
}
.grp-topbar-title { font-size: 20px; font-weight: 800; color: #0f172a; letter-spacing: -0.5px; }
.grp-topbar-right { 
    font-size: 13px; 
    color: #64748b; 
    font-weight: 600; 
    display: flex;
    align-items: center;
    gap: 20px;
}
.grp-notifications {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.2s;
    background: #f1f5f9;
    color: #475569;
}
.grp-notifications:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.grp-notifications .material-symbols-outlined {
    font-size: 24px;
}
.grp-notif-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}
.grp-notif-badge.show {
    display: flex;
    animation: grp-pulse 2s infinite;
}

@keyframes grp-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.grp-content { flex: 1; overflow-y: auto; padding: 32px; background: #f8fafc; }
.grp-mob-toggle { display: none; }

/* ── Loading & Animations ────────────────────────────────────────────────── */
.grp-loading { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 4px; 
    z-index: 10000; 
    background: rgba(226, 232, 240, 0.5); 
    display: none; 
    overflow: hidden;
}
.grp-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #3b82f6);
    background-size: 200% 100%;
    animation: grp-progress 1.2s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}
@keyframes grp-progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* Button Loading State */
.grp-btn-loading {
    position: relative !important;
    color: transparent !important;
    pointer-events: none !important;
}
.grp-btn-loading::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: currentColor;
    animation: grp-spin 0.6s linear infinite;
}
.grp-btn-primary.grp-btn-loading::after { border-top-color: #fff; border-right-color: rgba(255,255,255,0.2); border-bottom-color: rgba(255,255,255,0.2); border-left-color: rgba(255,255,255,0.2); }
.grp-btn-ghost.grp-btn-loading::after { border-top-color: #3b82f6; }

@keyframes grp-spin {
    to { transform: rotate(360deg); }
}

/* Skeleton Loader */
.grp-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: grp-skeleton-pulse 1.5s infinite linear;
    border-radius: 8px;
    display: block;
}
@keyframes grp-skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.grp-skeleton-text { height: 16px; margin-bottom: 8px; width: 100%; }
.grp-skeleton-title { height: 32px; margin-bottom: 24px; width: 50%; border-radius: 12px; }
.grp-skeleton-kpi { height: 80px; border-radius: 16px; }
.grp-skeleton-circle { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.grp-skeleton-btn { height: 42px; width: 140px; border-radius: 12px; }

.grp-loading p { display: none; }
.grp-spinner { display: none; }

.grp-card-reason {
    margin-top: 10px;
    margin-bottom: 12px;
    padding: 8px 10px;
    background: #fff1f2;
    border-radius: 8px;
    color: #be123c;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid #fecdd3;
}

/* Recruiter note — blue (non-rejected applicants) */
.grp-card-note {
    margin-top: 10px;
    margin-bottom: 12px;
    padding: 8px 10px;
    background: #eff6ff;
    border-radius: 8px;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    border: 1px solid #bfdbfe;
}

.grp-kanban-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
}
.grp-kanban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}
.grp-kanban-card:active {
    transform: translateY(0);
}

/* ── KPI Cards ───────────────────────────────────────────────────────────── */
.grp-kpi-row { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 16px; 
    margin-bottom: 28px; 
}
.grp-kpi-card { 
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
    border: 1px solid #f1f5f9;
}
.grp-kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.grp-kpi-num {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -1px;
}
.grp-kpi-lbl {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

/* ── Job Management ─────────────────────────────────────────────────────────── */
.grp-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.grp-job-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
}

.grp-job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  border-color: #3b82f6;
}

.grp-job-card.is-hidden {
  opacity: 0.7;
  background: #f8fafc;
}

.grp-job-hidden-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #64748b;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.grp-job-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.grp-job-content { flex: 1; }
.grp-job-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.grp-job-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.grp-job-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.grp-job-tag .material-symbols-outlined { 
  font-size: 18px; 
  color: #94a3b8;
}

.grp-job-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.grp-rule-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
  background: #f1f5f9;
  color: #64748b;
  transition: all 0.2s ease;
}

.grp-rule-chip.active {
  background: #dcfce7;
  color: #166534;
}

.grp-rule-chip .material-symbols-outlined {
  font-size: 14px;
}

.grp-job-actions {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.grp-job-card:hover .grp-job-actions {
  opacity: 1;
}

.grp-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
}

.grp-icon-btn:hover {
  background: #f8fafc;
  color: #1e293b;
  border-color: #cbd5e1;
}

.grp-rule-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #f1f5f9;
}
.grp-rule-label strong { display: block; font-size: 14px; color: #1e293b; margin-bottom: 2px; }
.grp-rule-label span { font-size: 12px; color: #64748b; }

.grp-rules-box {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}
.grp-rules-hdr { font-size: 12px; font-weight: 800; color: #64748b; text-transform: uppercase; margin-bottom: 16px; letter-spacing: 0.5px; }
.grp-switch { position: relative; display: inline-block; width: 40px; height: 20px; flex-shrink: 0; }

.grp-switch input { opacity: 0; width: 0; height: 0; }
.grp-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #cbd5e1; transition: .4s; border-radius: 20px; }
.grp-slider:before { position: absolute; content: ""; height: 14px; width: 14px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
.grp-rule-item input:checked + .grp-slider { background-color: #3b82f6; }
.grp-rule-item input:checked + .grp-slider:before { transform: translateX(20px); }



/* ── Section Header ──────────────────────────────────────────────────────── */
.grp-section-hdr { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 28px; 
}
.grp-section-hdr h2 { 
    font-size: 22px; 
    font-weight: 800; 
    color: #0f172a; 
    margin: 0; 
    letter-spacing: -0.5px;
}
.grp-view-toggle { 
    display: flex; 
    background: #f1f5f9; 
    border-radius: 12px; 
    padding: 4px; 
    gap: 4px; 
}
.grp-view-btn { 
    padding: 8px 16px; 
    border-radius: 10px; 
    border: none; 
    font-size: 13px; 
    font-weight: 700; 
    cursor: pointer; 
    font-family: inherit; 
    background: none; 
    color: #64748b; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    transition: all 0.2s ease;
}
.grp-view-btn.active { 
    background: #fff; 
    color: #3b82f6; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); 
}

/* ── Filter Bar ──────────────────────────────────────────────────────────── */
.grp-filter-bar { 
    display: flex; 
    gap: 12px; 
    flex-wrap: wrap; 
    background: #fff; 
    padding: 18px 20px; 
    border-radius: 16px; 
    border: 1px solid #f1f5f9; 
    margin-bottom: 24px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    align-items: center;
}
.grp-filter-bar input, .grp-filter-bar select { 
    border: 2px solid #f1f5f9; 
    border-radius: 12px; 
    padding: 10px 16px; 
    font-size: 14px; 
    font-family: inherit; 
    outline: none; 
    background: #f8fafc;
    transition: all 0.2s ease;
    min-width: 160px;
}
.grp-filter-bar input:focus, .grp-filter-bar select:focus { 
    border-color: #3b82f6; 
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.06);
}

/* ── Kanban ──────────────────────────────────────────────────────────────── */
.grp-kanban { 
    display: flex; 
    gap: 20px; 
    overflow-x: auto; 
    padding-bottom: 24px; 
    min-height: calc(100vh - 250px);
}
.grp-kanban-col { 
    flex: 0 0 300px; 
    background: #f1f5f9; 
    border-radius: 20px; 
    overflow: hidden; 
    border: 1px solid #e2e8f0; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.3s ease;
}
.grp-kanban-col.drag-over { 
    background: #eef2ff; 
    border-color: #3b82f6; 
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.grp-col-hdr { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 16px 20px; 
    background: #fff; 
    font-size: 13px; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 0.8px; 
    border-bottom: 1px solid #f1f5f9; 
}
.grp-col-count { 
    background: #f8fafc; 
    border-radius: 20px; 
    padding: 4px 12px; 
    font-size: 12px; 
    font-weight: 800; 
    color: #64748b; 
    border: 1px solid #e2e8f0;
}
.grp-col-body { 
    padding: 16px; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    min-height: 200px; 
    flex: 1; 
}

.grp-kanban-card { 
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    position: relative;
}
.grp-kanban-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
.grp-kanban-card.dragging { opacity: 0.5; transform: scale(0.95); cursor: grabbing; }

.grp-card-name { font-size: 14px; font-weight: 700; color: #1e293b; margin-bottom: 2px; }
.grp-card-pos { font-size: 12px; font-weight: 600; color: #0d9488; margin-bottom: 4px; }
.grp-card-meta { font-size: 11px; color: #94a3b8; margin-bottom: 8px; }
.grp-card-reg-text {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}
.grp-card-reg-text.registered { color: #16a34a; }
.grp-card-reg-text.link_sent { color: #d97706; }
.grp-card-reg-text.not_sent { color: #94a3b8; }

.grp-card-reason { font-size: 11px; color: #ef4444; margin-bottom: 8px; }

.grp-card-actions { 
    display: flex; 
    gap: 6px; 
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.grp-card-more {
    display: flex;
    gap: 6px;
    margin-top: 2px;
}

.grp-btn-icon {
    background: none;
    border: none;
    padding: 4px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.grp-btn-icon:hover { background: #f1f5f9; color: #3b82f6; }

/* ── Table ───────────────────────────────────────────────────────────────── */
.grp-table-wrap { 
    background: #fff; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0; 
    overflow: hidden; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); 
}
.grp-table { width: 100%; border-collapse: collapse; }
.grp-table th { 
    background: #f8fafc; 
    color: #475569; 
    padding: 16px 20px; 
    font-size: 11px; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 0.8px; 
    text-align: left; 
    white-space: nowrap; 
    border-bottom: 2px solid #f1f5f9;
}
.grp-table td { 
    padding: 16px 20px; 
    border-bottom: 1px solid #f1f5f9; 
    font-size: 14px; 
    vertical-align: middle; 
    color: #334155;
}
.grp-table tbody tr { transition: all 0.2s ease; }
.grp-table tbody tr:hover { background: #f8fafc !important; }
.grp-table tr:last-child td { border-bottom: none; }
.grp-td-name { font-weight: 700; color: #0f172a; font-size: 15px; }
.grp-td-email { font-size: 12px; color: #64748b; font-weight: 500; }

/* ── Enhanced Messaging ──────────────────────────────────────────────────── */
.grp-messages-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    height: calc(100vh - 180px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 10px;
}

.grp-thread-sidebar {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f1f5f9;
    background: #f8fafc;
    overflow: hidden;
    min-height: 0;
}

.grp-sidebar-filters {
    padding: 16px;
    background: white;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grp-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.grp-search-box .material-symbols-outlined {
    position: absolute;
    left: 10px;
    color: #94a3b8;
    font-size: 18px;
}

.grp-search-box input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    transition: all 0.2s;
}

.grp-search-box input:focus {
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26,54,93,0.1);
}

.grp-sidebar-filters select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    background: white;
}

.grp-thread-list {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}
.grp-thread-list::-webkit-scrollbar { width: 5px; }
.grp-thread-list::-webkit-scrollbar-track { background: transparent; }
.grp-thread-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.grp-thread-list::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Skeleton animation */
@keyframes grp-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.grp-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 800px 100%;
    animation: grp-shimmer 1.4s infinite linear;
    border-radius: 6px;
}

/* Thread divider between started/unstarted groups */
.grp-thread-divider {
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #94a3b8;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
}

/* Threads with existing chats get a subtle left accent */
.grp-thread-item.has-chat {
    border-left: 3px solid #c7d2fe;
}
.grp-thread-item.has-chat.active {
    border-left: 4px solid #1a365d;
}

.grp-thread-item {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
}

.grp-thread-item:hover {
    background: #f1f5f9;
}

.grp-thread-item.active {
    background: #fff;
    box-shadow: inset 4px 0 0 #1a365d, 0 4px 12px rgba(0,0,0,0.05);
}

.grp-thread-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grp-thread-unread {
    background: #ef4444;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 800;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.grp-thread-preview {
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 6px;
    font-weight: 500;
}

.grp-thread-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #94a3b8;
    margin-top: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Chat Panel */
.grp-chat-panel {
    display: flex;
    flex-direction: column;
    background: white;
}

.grp-chat-panel-hdr {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    z-index: 5;
}

.grp-chat-user-info {
    display: flex;
    flex-direction: column;
}

.grp-chat-user-name {
    font-weight: 800;
    color: #0f172a;
    font-size: 17px;
    letter-spacing: -0.3px;
}

.grp-chat-user-status {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}

.grp-chat-msgs {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.grp-chat-alert {
    background: #fffbeb;
    color: #92400e;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #fef3c7;
}

.grp-msg {
    max-width: 75%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    font-weight: 500;
}

.grp-msg.crew {
    align-self: flex-start;
    background: white;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-bottom-left-radius: 4px;
}

.grp-msg.admin {
    align-self: flex-end;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.grp-msg-author {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

.grp-msg-time {
    display: block;
    font-size: 10px;
    margin-top: 8px;
    opacity: 0.5;
    text-align: right;
    font-weight: 600;
}

.grp-chat-input-wrap {
    padding: 20px 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 16px;
    align-items: flex-end;
    background: #fff;
}

.grp-chat-input {
    flex: 1;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 14px;
    resize: none;
    transition: all 0.3s ease;
    max-height: 120px;
    background: #f8fafc;
    font-family: inherit;
    font-weight: 500;
}

.grp-chat-input:focus {
    border-color: #3b82f6;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.grp-chat-send {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #3b82f6;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.grp-chat-send:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.grp-chat-send:active {
    transform: translateY(0);
}


.grp-skeleton-chat {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ── Status Badge ────────────────────────────────────────────────────────── */
.grp-status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 20px; }
.grp-reg-badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 20px; }
.grp-reg-badge.registered { background: #f0fdf4; color: #166534; }
.grp-reg-badge.active     { background: #f0fdf4; color: #166534; }
.grp-reg-badge.link_sent  { background: #fefce8; color: #854d0e; }
.grp-reg-badge.used       { background: #f3f4f6; color: #4b5563; }
.grp-reg-badge.expired    { background: #fff7ed; color: #9a3412; }
.grp-reg-badge.none       { background: #f9fafb; color: #94a3b8; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.grp-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; font-family: inherit; transition: all .15s; }
.grp-btn-primary { background: #1a365d; color: #fff; }
.grp-btn-primary:hover { background: #2c7a7b; }
.grp-btn-ghost { background: #f1f5f9; color: #374151; }
.grp-btn-ghost:hover { background: #e2e8f0; }
.grp-btn-sm { display: inline-flex; align-items: center; gap: 4px; padding: 5px 11px; border-radius: 7px; font-size: 11px; font-weight: 700; cursor: pointer; border: none; font-family: inherit; background: #e2e8f0; color: #374151; }
.grp-btn-green { background: #dcfce7; color: #166534; }
.grp-btn-blue  { background: #e0f2fe; color: #0369a1; }
.grp-btn-red   { background: #fee2e2; color: #991b1b; }

/* ── Team Section ────────────────────────────────────────────────────────── */
.grp-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.grp-team-card { background: #fff; border-radius: 14px; padding: 22px; border: 1px solid #e2e8f0; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.grp-team-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #1a365d, #2c7a7b); color: #fff; font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.grp-team-name { font-size: 16px; font-weight: 800; color: #1a365d; margin-bottom: 2px; }
.grp-team-email { font-size: 12px; color: #64748b; margin-bottom: 12px; }
.grp-role-badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; }
.grp-role-badge.super    { background: #fef3c7; color: #92400e; }
.grp-role-badge.recruiter{ background: #e0f2fe; color: #0369a1; }
.grp-deactivated { opacity: .5; }

/* ── Modal ───────────────────────────────────────────────────────────────── */
.grp-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 99000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.grp-modal { background: #fff; border-radius: 20px; padding: 36px; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.3); transition: max-width .3s ease; }
.grp-modal.large { max-width: 850px; }
.grp-modal-close { position: absolute; top: 16px; right: 16px; background: #f1f5f9; border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #64748b; }
.grp-modal h2 { font-size: 18px; font-weight: 900; color: #1a365d; margin: 0 0 20px; }
.grp-form-field { margin-bottom: 16px; }
.grp-form-field label { display: block; font-size: 11px; font-weight: 800; color: #374151; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.grp-form-field input, .grp-form-field select { width: 100%; padding: 12px 14px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 14px; font-family: inherit; outline: none; }
.grp-form-field input:focus, .grp-form-field select:focus { border-color: #1a365d; }

/* ── Journey Grid ────────────────────────────────────────────────────────── */
.grp-journey-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.grp-journey-timeline { margin-top: 16px; position: relative; padding-left: 14px; border-left: 2px solid #e2e8f0; }
.grp-journey-step { position: relative; margin-bottom: 18px; font-size: 13px; display: flex; justify-content: space-between; align-items: center; }
.grp-journey-step::before { content: ''; position: absolute; left: -21px; top: 2px; width: 12px; height: 12px; background: #e2e8f0; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px #cbd5e1; }
.grp-journey-step.active::before { background: #10b981; border-color: #fff; box-shadow: 0 0 0 2px #10b981; }
.grp-journey-step-title { font-weight: 800; color: #1a365d; }
.grp-journey-step-time { font-size: 11px; color: #94a3b8; font-weight: 600; }

/* ── Skeletons ───────────────────────────────────────────────────────────── */
.grp-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: grp-skeleton-loading 1.5s infinite;
    border-radius: 8px;
}
@keyframes grp-skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.grp-skeleton-title { height: 32px; width: 60%; margin-bottom: 24px; }
.grp-skeleton-text { height: 16px; width: 100%; margin-bottom: 12px; }
.grp-skeleton-btn { height: 40px; width: 120px; border-radius: 10px; }


/* ── Settings Form ───────────────────────────────────────────────────────── */
.grp-settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; }
.grp-settings-card { background: #fff; border-radius: 14px; padding: 24px; border: 1px solid #e2e8f0; }
.grp-settings-card h3 { font-size: 14px; font-weight: 800; color: #1a365d; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid #1a365d; }

/* ── Toast ───────────────────────────────────────────────────────────────── */
.grp-toast { position: fixed; bottom: 28px; right: 28px; z-index: 999999; padding: 14px 22px; background: #1a365d; color: #fff; border-radius: 12px; font-size: 14px; font-weight: 700; font-family: Inter, sans-serif; box-shadow: 0 8px 32px rgba(0,0,0,.2); transform: translateY(80px); opacity: 0; transition: all .3s; pointer-events: none; max-width: 380px; }
.grp-toast.show { transform: translateY(0); opacity: 1; }
.grp-toast.success { background: #10b981; }
.grp-toast.error   { background: #ef4444; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.grp-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.grp-page-btn { padding: 7px 13px; border-radius: 8px; font-size: 13px; font-weight: 700; border: 1px solid #e2e8f0; background: #fff; cursor: pointer; font-family: inherit; color: #374151; }
.grp-page-btn.active { background: #1a365d; color: #fff; border-color: #1a365d; }
.grp-page-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── Empty State ─────────────────────────────────────────────────────────── */
.grp-empty { text-align: center; padding: 60px 20px; color: #94a3b8; }
.grp-empty .material-symbols-outlined { font-size: 48px; margin-bottom: 12px; display: block; }
.grp-empty p { font-size: 14px; font-weight: 600; margin: 0; }

/* ── Recent Activity ─────────────────────────────────────────────────────── */
.grp-activity-list { 
    background: #fff; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0; 
    overflow: hidden; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.grp-activity-item { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    padding: 16px 20px; 
    border-bottom: 1px solid #f1f5f9; 
    transition: all 0.2s ease;
}
.grp-activity-item:last-child { border-bottom: none; }
.grp-activity-item:hover { 
    background: #f8fafc; 
}
.grp-activity-dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    flex-shrink: 0; 
}
.grp-activity-text { 
    font-size: 14px; 
    color: #1e293b; 
    font-weight: 500; 
    line-height: 1.4;
}
.grp-activity-text strong { color: #0f172a; font-weight: 700; }
.grp-activity-time { 
    font-size: 12px; 
    color: #94a3b8; 
    margin-top: 4px; 
    font-weight: 500;
}
.grp-activity-item .grp-status-badge {
    margin-left: auto;
    font-size: 10px;
    padding: 4px 10px;
    white-space: nowrap;
}
 
/* ── Tabs for Templates ─────────────────────────────────────────────────── */
.grp-tabs { margin-top: 12px; }
.grp-tab-nav { display: flex; gap: 8px; border-bottom: 1px solid #e2e8f0; margin-bottom: 20px; }
.grp-tab-btn { padding: 8px 16px; border: none; background: none; font-size: 13px; font-weight: 700; color: #64748b; cursor: pointer; position: relative; font-family: inherit; }
.grp-tab-btn.active { color: #1a365d; }
.grp-tab-btn.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: #1a365d; }
.grp-tab-content { display: none; }
.grp-tab-content.active { display: block; animation: grpFade .3s ease; }
@keyframes grpFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
 
.grp-form-field textarea { width: 100%; padding: 12px 14px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 14px; font-family: inherit; outline: none; }
.grp-form-field textarea:focus { border-color: #1a365d; }

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .grp-shell { position: fixed; }
    .grp-sidebar { position: fixed; left: -260px; top: 0; bottom: 0; z-index: 9100; transition: left .25s; }
    .grp-sidebar.open { left: 0; }
    .grp-mob-toggle { display: flex; position: fixed; top: 14px; left: 14px; z-index: 9200; background: #1a365d; color: white; border: none; border-radius: 10px; padding: 8px; cursor: pointer; align-items: center; }
    .grp-main { margin-left: 0; }
    .grp-topbar { padding-left: 56px; }
    .grp-kanban { overflow-x: auto; }
    .grp-messages-wrap { grid-template-columns: 1fr; }
    .grp-settings-grid { grid-template-columns: 1fr; }
}

/* ── Notification Sliding Panel ──────────────────────────────────────────── */
#grp-notif-panel {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid #e2e8f0;
}
#grp-notif-panel.open { right: 0; }

.grp-np-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.grp-np-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.grp-np-empty {
    text-align: center;
    padding: 48px 20px;
    color: #94a3b8;
    font-size: 14px;
}

.grp-np-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.15s;
    position: relative;
    border-bottom: 1px solid #f8fafc;
}
.grp-np-item:hover { background: #f8fafc; }
.grp-np-item.unread { background: #eff6ff; }
.grp-np-item.unread:hover { background: #dbeafe; }

.grp-np-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.grp-np-body { flex: 1; min-width: 0; }
.grp-np-subject {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.grp-np-msg {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.grp-np-date { font-size: 11px; color: #94a3b8; }

.grp-np-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
    margin-top: 4px;
}
