/* Job Seeker panel — blue / sky-blue / light-purple theme layered on top of style.css */
:root {
  --seek-teal: #2563eb;        /* primary blue */
  --seek-teal-dark: #1d4ed8;   /* deeper blue */
  --seek-blue: #0ea5e9;        /* sky blue */
  --seek-coral: #8b5cf6;       /* light-purple accent */
  --seek-green: #10b981;
  --seek-pink: #eb3b5a;
  --seek-purple-light: #f3f0fe;
  --seek-purple-dark: #6d28d9;
}

.jp-seek-banner {
  background: linear-gradient(135deg, var(--seek-teal) 0%, var(--seek-blue) 100%);
  border-radius: var(--jp-radius-lg);
  padding: 28px 30px;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.25);
}
.jp-seek-banner::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  z-index: 0;
  pointer-events: none;
}
.jp-seek-banner > * {
  position: relative;
  z-index: 1;
}
.jp-seek-banner h4 { color: #fff; font-weight: 700; margin-bottom: 4px; }
.jp-seek-banner p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.jp-seek-banner .jp-btn-primary {
  background: var(--seek-coral);
  color: #fff !important;
  font-weight: 700;
  border: none;
}
.jp-seek-banner .jp-btn-primary:hover { background: #7c3aed; }

/* Sidebar — clean white card with pill-highlighted nav */
.jp-seek-sidebar { position: relative; overflow: hidden; }
.jp-seek-sidebar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--seek-teal), var(--seek-blue), var(--seek-coral));
}
.jp-seek-sidebar .jp-dash-avatar {
  background: linear-gradient(135deg, var(--seek-teal), var(--seek-blue));
  color: #fff;
}
.jp-seek-sidebar .jp-dash-avatar-photo { border-color: #fff; }
.jp-seek-sidebar h6 { color: var(--jp-text); }
.jp-seek-sidebar p.jp-role { color: var(--jp-muted); }
.jp-seek-sidebar .jp-dash-nav,
.jp-seek-sidebar .jp-dash-subnav { padding: 0 12px; }
.jp-seek-sidebar .jp-dash-nav li { margin-bottom: 3px; }
.jp-seek-sidebar .jp-dash-nav li a,
.jp-seek-sidebar .jp-dash-nav-toggle {
  border-radius: 10px;
  border-left: none !important;
  padding: 11px 14px;
}
.jp-seek-sidebar .jp-dash-subnav li a { border-radius: 8px; border-left: none !important; padding: 9px 14px 9px 34px; }
.jp-seek-sidebar .jp-dash-nav li a.active,
.jp-seek-sidebar .jp-dash-nav li a:hover,
.jp-seek-sidebar .jp-dash-nav-toggle.active,
.jp-seek-sidebar .jp-dash-nav-toggle:hover,
.jp-seek-sidebar .jp-dash-subnav li a.active,
.jp-seek-sidebar .jp-dash-subnav li a:hover {
  background: var(--seek-purple-light);
  color: var(--seek-teal-dark);
  font-weight: 650;
}

/* Stat cards with colored accents */
.jp-seek-stat {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--jp-border);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--stat-color, var(--seek-teal));
  box-shadow: var(--jp-shadow-1);
  transition: transform .18s var(--jp-ease), box-shadow .18s var(--jp-ease);
}
.jp-seek-stat:hover { transform: translateY(-3px); box-shadow: var(--jp-shadow-2); }
.jp-seek-stat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  background: var(--stat-color, var(--seek-teal));
}
.jp-seek-stat h3 { font-weight: 700; margin: 0; color: #23272f; font-size: 1.7rem; }
.jp-seek-stat span { color: var(--jp-muted); font-size: 13.5px; }
.jp-seek-stat--blue { --stat-color: var(--seek-blue); }
.jp-seek-stat--teal { --stat-color: var(--seek-teal); }
.jp-seek-stat--coral { --stat-color: var(--seek-coral); }
.jp-seek-stat--green { --stat-color: var(--seek-green); }

/* Compact "coming soon" tile */
.jp-seek-stat--soon { opacity: 0.62; border-left-color: var(--jp-border); }
.jp-seek-stat--soon .jp-seek-stat-icon { background: var(--jp-border); color: #9aa1ad; }

/* Section card headers with colored icon chip */
.jp-seek-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 18px;
}
.jp-seek-card-title i {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--seek-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* Table styling */
.jp-seek-table thead th {
  background: #eef4ff;
  color: var(--seek-teal-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-bottom: none;
}
.jp-seek-table tbody tr:hover { background: #f5f9ff; }

.jp-seek-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-block;
}
.jp-seek-badge--applied { background: #eef1f5; color: #555; }
.jp-seek-badge--shortlisted { background: #e6f0ff; color: var(--seek-blue); }
.jp-seek-badge--rejected { background: #fde8ec; color: var(--seek-pink); }
.jp-seek-badge--hired { background: #e3faf1; color: var(--seek-green); }

.jp-empty-state i { color: var(--seek-teal); opacity: 0.35; }

/* Recommended job mini-card */
.jp-seek-reco-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md);
  margin-bottom: 10px;
  transition: transform .16s var(--jp-ease), box-shadow .16s var(--jp-ease), border-color .16s var(--jp-ease);
  color: inherit;
}
.jp-seek-reco-card:hover { transform: translateY(-2px); box-shadow: var(--jp-shadow-1); border-color: rgba(37, 99, 235, 0.25); color: inherit; }
.jp-seek-reco-card:last-child { margin-bottom: 0; }
.jp-seek-reco-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  background: var(--seek-purple-light); color: var(--seek-purple-dark);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.jp-seek-reco-body { flex: 1 1 auto; min-width: 0; }
.jp-seek-reco-body h6 { font-weight: 700; margin: 0 0 2px; font-size: 14px; }
.jp-seek-reco-body span { color: var(--jp-muted); font-size: 12.5px; }

/* Auth pages (register/login) */
.jp-seek-auth-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--seek-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.jp-seek-auth-card .btn-submit {
  background: linear-gradient(135deg, var(--seek-teal), var(--seek-blue));
}
.jp-seek-auth-card .btn-submit:hover { opacity: 0.92; }
.jp-seek-auth-card .form-control:focus {
  border-color: var(--seek-teal);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}
.jp-seek-auth-switch a { color: var(--seek-teal); font-weight: 600; }

/* Profile page */
.jp-profile-ring-wrap {
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--jp-border);
}
.jp-profile-ring-wrap--inline {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.jp-profile-ring-wrap--inline .jp-profile-ring {
  width: 82px;
  height: 82px;
}
.jp-profile-ring-wrap--inline .jp-profile-ring span { font-size: 17px; }
.jp-profile-ring-wrap--inline .jp-profile-ring-label { font-size: 12px; }
.jp-profile-ring {
  --pct: 0;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: conic-gradient(var(--seek-teal) calc(var(--pct) * 1%), #e9edf1 0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.18);
}
.jp-profile-ring::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}
.jp-profile-ring span {
  position: relative;
  font-weight: 700;
  font-size: 22px;
  color: var(--seek-teal-dark);
  z-index: 1;
}
.jp-profile-ring-label {
  text-align: center;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--seek-teal-dark);
  margin: 0;
  letter-spacing: 0.2px;
}

.jp-profile-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--seek-teal);
}
.jp-form-profile-head {
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
  border-left: 4px solid var(--seek-teal);
}
.jp-form-section {
  scroll-margin-top: 96px;
}
.jp-form-section .jp-seek-card-title {
  border-bottom: 1px solid var(--jp-border);
  margin: -4px 0 18px;
  padding-bottom: 12px;
}
.jp-form-section .form-label {
  color: #384252;
  font-size: 13.5px;
  font-weight: 650;
  margin-bottom: 6px;
}
.jp-form-section .form-control,
.jp-form-section .form-select {
  border-color: #dce3ea;
  border-radius: 8px;
  min-height: 43px;
}
.jp-form-section textarea.form-control {
  min-height: 78px;
}
.jp-form-section .form-control:focus,
.jp-form-section .form-select:focus {
  border-color: var(--seek-teal);
  box-shadow: 0 0 0 0.18rem rgba(37, 99, 235, 0.14);
}
.jp-form-section .text-muted a {
  color: var(--seek-teal-dark);
  font-weight: 600;
}
.jp-skill-tag { font-size: 13px; padding: 6px 10px; }
.jp-skill-remove { color: var(--seek-pink); margin-left: 6px; font-weight: 700; text-decoration: none; }
