/* ==========================================================================
   Job Portal — Employer Suite
   Design tokens: Primary #2563EB | Secondary #0F172A | Accent #22C55E | BG #F8FAFC
   Typeface: Poppins (all roles — display, body, utility)
   Signature element: the "Pipeline Pill" status system (Draft/Active/Closed/Review)
   echoed from the hero product-mockup down through every table & card, plus a
   floating layered dashboard mockup in the hero (Stripe/Linear-style proof-of-product).
   ========================================================================== */

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #EFF4FF;
  --secondary: #0F172A;
  --accent: #22C55E;
  --accent-light: #ECFDF3;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --border: #E5E9F0;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-faint: #94A3B8;
  --danger: #EF4444;
  --warning: #F59E0B;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.06), 0 20px 40px rgba(37, 99, 235, 0.14);

  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #4F8CFF 50%, #22C55E 130%);
  --gradient-soft: linear-gradient(180deg, #EFF4FF 0%, #F8FAFC 100%);
  --gradient-mint: linear-gradient(160deg, #EFF6FF 0%, #F3FBF6 55%, #EAFBF1 100%);
  --gradient-dark: var(--gradient-mint);
  --sidebar-bg: #FFFFFF;

  --font: 'Poppins', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--bg);
  font-size: 15.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.display-1,
.display-2,
.display-3 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
}

::selection {
  background: var(--primary);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 56px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 40px 0;
  }
}

.bg-soft {
  background: var(--gradient-soft);
}

.bg-dark {
  background: var(--gradient-mint);
  color: var(--text-main);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--secondary);
}

.bg-dark p {
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

.bg-dark .eyebrow {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.text-muted-2 {
  color: var(--text-faint) !important;
}

/* ---------- Buttons ---------- */
.btn {
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  transition: all .2s ease;
}

.btn-lg {
  padding: 13px 30px;
  font-size: 1rem;
}

.btn-sm {
  padding: 7px 15px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.34);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.28);
}

.btn-accent:hover {
  background: #1BA34E;
  border-color: #1BA34E;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light-2 {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.btn-outline-light-2:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-outline-primary {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

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

.btn-dark-2 {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn-dark-2:hover {
  background: #1E293B;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: #F1F5F9;
}

/* ---------- Navbar ---------- */
.navbar-jp {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: box-shadow .25s ease, padding .25s ease;
}

.navbar-jp.is-scrolled {
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  padding: 10px 0;
}

.brand-jp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--secondary);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}

.brand-jp .brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-top: -2px;
}

.navbar-jp .nav-link {
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: all .2s ease;
}

.navbar-jp .nav-link:hover,
.navbar-jp .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* ---------- Cards ---------- */
.card-jp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card-jp:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-tile {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

.icon-tile.accent {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.25);
}

.icon-tile.soft {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: none;
}

/* ---------- Stat pill / status pill (signature system) ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}

.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.pill-active {
  background: var(--accent-light);
  color: #15803D;
}

.pill-draft {
  background: #F1F5F9;
  color: #64748B;
}

.pill-closed {
  background: #FEE2E2;
  color: #B91C1C;
}

.pill-review {
  background: #FEF3C7;
  color: #B45309;
}

.pill-shortlisted {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ---------- Hero mockup (signature) ---------- */
.hero-jp {
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
}

.hero-jp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 82% 18%, rgba(34, 197, 94, 0.16), transparent 70%),
    radial-gradient(55% 50% at 10% 15%, rgba(37, 99, 235, 0.14), transparent 70%);
  pointer-events: none;
}

.mockup-stack {
  position: relative;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 22px;
}

.mockup-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 16px;
  animation: float-y 5s ease-in-out infinite;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.mockup-bar {
  height: 9px;
  border-radius: 5px;
  background: #E2E8F0;
}

.mockup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
}

.mockup-row:last-child {
  border-bottom: none;
}

/* ---------- Sections: features / how it works ---------- */
.step-card {
  position: relative;
  padding-top: 8px;
}

.step-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(37, 99, 235, 0.35);
  line-height: 1;
}

/* ---------- Stats ---------- */
.stat-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
}

/* ---------- Testimonials ---------- */
.testi-card {
  padding: 30px;
}

.testi-quote {
  font-size: 2.6rem;
  color: var(--primary-light);
  line-height: 0;
  display: block;
  margin-bottom: 6px;
}

.avatar-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

/* ---------- Pricing ---------- */
.price-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.price-amount span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-feat-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  text-align: left;
}

.price-feat-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.price-feat-list li i {
  color: var(--accent);
  margin-top: 3px;
}

/* ---------- FAQ Accordion ---------- */
.accordion-jp .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-jp .accordion-button {
  font-weight: 600;
  padding: 20px 24px;
  color: var(--secondary);
  background: #fff;
}

.accordion-jp .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
  box-shadow: none;
}

.accordion-jp .accordion-button:focus {
  box-shadow: none;
}

.accordion-jp .accordion-button::after {
  background-size: 1.1rem;
}

.accordion-jp .accordion-body {
  padding: 4px 24px 22px;
  color: var(--text-muted);
}

/* ---------- Forms ---------- */
.form-jp .form-label {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-jp .form-control,
.form-jp .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.92rem;
  background: #fff;
}

.form-jp .form-control:focus,
.form-jp .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
}

.input-icon-wrap .form-control {
  padding-left: 42px;
}

.form-jp .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-jp .form-control.is-invalid,
.form-jp .form-select.is-invalid,
.form-jp .form-check-input.is-invalid {
  border-color: #dc3545;
}

.form-jp label.error,
.form-jp label.server-error {
  display: block;
  color: #dc3545;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 0;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  background: #fff;
  transition: all .2s ease;
}

.social-btn:hover {
  background: #F8FAFC;
  border-color: var(--text-faint);
}

/* ---------- Auth split screen ---------- */
.auth-wrap {
  min-height: 100vh;
}

.auth-visual {
  background: var(--gradient-mint);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.auth-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 25% 15%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(45% 45% at 80% 85%, rgba(34, 197, 94, 0.16), transparent 60%);
}

.auth-visual .mockup-card {
  position: relative;
  z-index: 1;
}

/* ---------- App Download / Play Store ---------- */
.app-download-section {
  padding-top: 48px;
  padding-bottom: 72px;
}

.app-download-card {
  background: var(--gradient-mint);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.app-download-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.btn-play-store {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #0F172A;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: var(--shadow-md);
}

.btn-play-store i {
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.btn-play-store span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.btn-play-store small {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.btn-play-store strong {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn-play-store:hover {
  background: #1E293B;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff !important;
}

@media (max-width: 991px) {
  .app-download-card {
    padding: 36px 28px;
    text-align: center;
  }

  .app-download-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .app-download-card .text-lg-end {
    text-align: center !important;
  }
}

/* ---------- Footer ---------- */
.footer-jp {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF4FF 100%);
  color: var(--text-muted);
  padding: 72px 0 0;
  border-top: 1px solid var(--border);
}

.footer-jp h6 {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-jp a.footer-link {
  color: var(--text-muted);
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: color .2s;
}

.footer-jp a.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 22px 0;
  font-size: 0.85rem;
  color: var(--text-faint);
}

.social-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: all .2s ease;
}

.social-icon-circle:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.newsletter-input {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-main);
  padding: 12px 20px;
}

.newsletter-input::placeholder {
  color: var(--text-faint);
}

.newsletter-input:focus {
  background: #fff;
  color: var(--text-main);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  border-color: var(--primary);
}

/* ==========================================================================
   Dashboard shell (Employer app: sidebar + topbar)
   ========================================================================== */
.app-shell {
  display: flex;
  min-height: 100vh;
}

.app-sidebar {
  width: 264px;
  flex-shrink: 0;
  background: var(--sidebar-bg);
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 22px 16px;
  transition: transform .25s ease;
  z-index: 1030;
}

.app-sidebar .brand-jp {
  color: var(--secondary);
  padding: 6px 10px 22px;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 4px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all .2s ease;
}

.sidebar-nav a i {
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
}

.sidebar-nav a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.sidebar-nav a.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.sidebar-logout-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  text-align: left;
  transition: all .2s ease;
}

.sidebar-logout-btn i {
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
}

.sidebar-logout-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.tagify {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  background: #fff;
}

.tagify:hover,
.tagify.tagify--focus {
  border-color: var(--primary);
}

.ck-editor__editable_inline,
.ck-editor__editable {
  min-height: 140px;
}

.sidebar-divider {
  border-top: 1px solid var(--border);
  margin: 18px 6px;
}

.sidebar-foot {
  font-size: 0.72rem;
  color: var(--text-faint);
  padding: 10px 14px;
}

.app-main {
  flex: 1;
  min-width: 0;
}

.app-topbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.app-content {
  padding: 28px;
}

.sidebar-toggle-btn {
  display: none;
}

@media (max-width: 991px) {
  .app-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    box-shadow: var(--shadow-lg);
  }

  .app-sidebar.open {
    transform: translateX(0);
  }

  .sidebar-toggle-btn {
    display: inline-flex;
  }

  .sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1025;
  }

  .sidebar-backdrop.show {
    display: block;
  }
}

.stat-card-dash {
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-card-dash .stat-num {
  font-size: 1.9rem;
}

.trend-up {
  color: #15803D;
  font-size: 0.8rem;
  font-weight: 600;
}

.trend-down {
  color: #B91C1C;
  font-size: 0.8rem;
  font-weight: 600;
}

.table-jp {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.table-jp table {
  margin-bottom: 0;
}

.table-jp thead th {
  background: #F8FAFC;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
}

.table-jp tbody td {
  padding: 16px 18px;
  vertical-align: middle;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.table-jp tbody tr:last-child td {
  border-bottom: none;
}

.table-jp tbody tr:hover {
  background: #FAFBFF;
}

.row-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all .2s ease;
  background: #fff;
}

.row-icon-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-light);
}

.row-icon-btn.danger:hover {
  background: #FEE2E2;
  color: #B91C1C;
  border-color: #FEE2E2;
}

.chart-placeholder {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.applicant-card {
  padding: 20px;
}

.company-cover {
  height: 220px;
  border-radius: var(--radius-lg);
  background: var(--gradient-mint);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.company-logo-lg {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.form-toggle-switch .form-check-input {
  width: 44px;
  height: 24px;
}

.form-toggle-switch .form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.divider-or {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-faint);
  font-size: 0.82rem;
  margin: 22px 0;
}

.divider-or::before,
.divider-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-jp .dropdown-menu {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 8px;
}

.dropdown-jp .dropdown-item {
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.dropdown-jp .dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.notif-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
}
.dataTables_wrapper{
  padding: 30px;
}
.ck-blurred  p{
  color:black !important;
}
.ck-focused  p{
  color:black !important;
}
.swal2-cancel{
  color:black !important;
}
.candidate_modal_box .modal-content{
  color:#585757 !important;
}
.candidate_modal_box h5{
  color:#585757 !important;
}