/* ==========================================================================
   SANDEEP SERVICES — MASTER THEME CSS DESIGN SYSTEM
   Brand Colors: Teal (#1B7768), Orange (#E86800), Dark Teal (#145a4e), Soft Light (#EAF7F5)
   No Emojis — Clean SVGs Only
   ========================================================================== */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --teal:          #1B7768;
  --teal-dark:     #145a4e;
  --teal-light:    #EAF7F5;
  --teal-border:   #BEE6DE;
  
  --orange:        #E86800;
  --orange-dark:   #cc5b00;
  --orange-light:  #FFF7ED;
  --orange-border: #FFD8A8;

  --wa-green:      #25D366;
  --wa-green-dark: #1ea952;
  --wa-green-light:#DCFCE7;

  --ink:           #111827;
  --ink-light:     #374151;
  --muted:         #6B7280;
  --line:          #E5E7EB;
  --bg:            #F8FAFC;
  --white:         #ffffff;
  --footer-bg:     #0d1117;

  /* Typography */
  --font-family:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Radii */
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-pill:   999px;

  /* Elevation / Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.05), 0 4px 12px -2px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 20px -4px rgba(0,0,0,0.10);
  --shadow-lg:     0 10px 36px -6px rgba(0,0,0,0.16);
  --shadow-modal:  0 20px 60px -10px rgba(0,0,0,0.30);
}

/* ─── 2. RESET & BASE ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--ink);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

ul, ol {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: var(--font-family);
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
}

/* ─── 3. LAYOUT CONTAINER & SECTIONS ───────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

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

.bg-light {
  background-color: var(--bg);
}

.bg-teal {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
}

.text-center {
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── 4. BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background-color: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,119,104,0.35);
}

.btn-orange {
  background-color: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  background-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,104,0,0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover {
  background-color: var(--teal-light);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
}

.btn-wa {
  background-color: var(--wa-green);
  color: var(--white);
}
.btn-wa:hover {
  background-color: var(--wa-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-full {
  width: 100%;
}

/* ─── 5. FORM INPUTS & SELECTS ─────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(27,119,104,0.12);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ─── 6. BADGES & PILLS ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-verified {
  background-color: #ECFDF5;
  color: #059669;
}

.badge-urgent {
  background-color: #FEE2E2;
  color: #991B1B;
}

.badge-shift-day {
  background-color: #FFF7ED;
  color: #C2410C;
}

.badge-shift-night {
  background-color: #EEF2FF;
  color: #4338CA;
}

.badge-shift-dual {
  background-color: #F5F3FF;
  color: #6D28D9;
}

.badge-benefit-food {
  background-color: #F0FDF4;
  color: #166534;
}

.badge-benefit-stay {
  background-color: #EFF6FF;
  color: #1D4ED8;
}

/* ─── 7. NAVBAR ────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: 72px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.desktop-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}
.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--teal);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--teal);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
}
.nav-phone:hover {
  background-color: var(--teal-light);
}

.user-badge-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--teal-light);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--teal-border);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  z-index: 999;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 500;
}
.mobile-nav .mn-apply {
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
  margin: 12px 16px 16px;
  border-radius: var(--radius-sm);
}

/* ─── 8. FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background-color: var(--footer-bg);
  color: #9CA3AF;
  padding: 72px 0 28px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 20px 0 24px;
}

.footer-logo img {
  height: 36px;
  background-color: var(--white);
  padding: 6px 10px;
  border-radius: 6px;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background-color: #1F2937;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: all 0.2s ease;
}
.social-btn:hover {
  background-color: var(--teal);
  color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: #9CA3AF;
}
.footer-col ul a:hover {
  color: var(--teal);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-item svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}
.footer-contact-item span {
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid #1F2937;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* ─── 9. FLOATING BUTTONS ──────────────────────────────────────────────── */
.floaters {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floater {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  transition: transform 0.2s ease;
}
.floater:hover {
  transform: scale(1.1);
}
.fl-wa { background-color: var(--wa-green); }
.fl-call { background-color: var(--teal); }

/* ─── 10. MODAL & DIALOG ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 36px 32px;
  box-shadow: var(--shadow-modal);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
}
.modal-close:hover {
  color: var(--ink);
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}
.otp-input {
  width: 52px;
  height: 58px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s ease;
}
.otp-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(27,119,104,0.12);
}

/* ─── 11. RESPONSIVE BREAKPOINTS ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .desktop-nav, .nav-phone, .nav-apply { display: none !important; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   12. REMOTEFIND STYLE 3-COLUMN SPLIT DASHBOARD STYLES
   ========================================================================== */
.jobs-dashboard-section {
  background-color: #F8FAFC;
  padding: 32px 0 64px 0;
  min-height: calc(100vh - 80px);
}

.jobs-dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr 360px;
  gap: 24px;
  align-items: start;
}

/* ── Left Filter Sidebar ────────────────────────────────────────────────── */
.rf-filter-sidebar {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  position: sticky;
  top: 100px;
}

.rf-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}

.rf-filter-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
}

.rf-filter-reset {
  font-size: 0.85rem;
  font-weight: 700;
  color: #E86800;
  cursor: pointer;
  border: none;
  background: none;
  transition: opacity 0.2s;
}
.rf-filter-reset:hover { opacity: 0.75; }

.rf-filter-group {
  margin-bottom: 22px;
}

.rf-filter-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}

.rf-search-input-wrap {
  position: relative;
  margin-bottom: 14px;
}
.rf-search-input-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  width: 16px;
  height: 16px;
}
.rf-search-input-wrap input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.2s;
}
.rf-search-input-wrap input:focus {
  border-color: #1B7768;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(27,119,104,0.12);
}

.rf-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}
.rf-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  cursor: pointer;
  user-select: none;
}
.rf-checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1B7768;
  border-radius: 4px;
  cursor: pointer;
}

/* ── Center Content Column ─────────────────────────────────────────────── */
.rf-center-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Top Hero Banner */
.rf-hero-banner {
  background: linear-gradient(135deg, #1B7768 0%, #145a4e 100%);
  border-radius: 20px;
  padding: 32px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27,119,104,0.20);
}
.rf-hero-banner::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.rf-hero-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.rf-hero-sub {
  font-size: 0.92rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.rf-hero-search-bar {
  background: #FFFFFF;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.rf-hero-search-bar svg {
  color: #94A3B8;
  flex-shrink: 0;
}
.rf-hero-search-bar input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
  color: #0F172A;
  background: transparent;
}
.rf-hero-search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1B7768;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.rf-hero-search-btn:hover {
  background: #145a4e;
  transform: scale(1.05);
}

/* Results Count Header */
.rf-results-count {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 3-Column Job Card Grid */
.rf-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rf-job-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.rf-job-card:hover {
  border-color: #1B7768;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,119,104,0.12);
}
.rf-job-card.active {
  border: 2px solid #1B7768;
  background: #F0FDF4;
  box-shadow: 0 6px 20px rgba(27,119,104,0.16);
}

.rf-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.rf-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EAF7F5;
  color: #1B7768;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.rf-bookmark-btn {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s;
}
.rf-bookmark-btn:hover, .rf-bookmark-btn.saved {
  background: #EAF7F5;
  color: #1B7768;
  border-color: #1B7768;
}

.rf-company-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.rf-verified-icon {
  color: #1B7768;
  width: 14px;
  height: 14px;
  display: inline-block;
}

.rf-job-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.rf-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.rf-tag-pill {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.rf-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
  margin-top: auto;
}
.rf-salary-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
}
.rf-location-text {
  font-size: 0.78rem;
  color: #64748B;
  margin-top: 2px;
}

.rf-btn-details {
  border: 1.5px solid #1B7768;
  color: #1B7768;
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.rf-btn-details:hover {
  background: #1B7768;
  color: #FFFFFF;
}

/* ── Right Dynamic Job Detail Panel ─────────────────────────────────────── */
.rf-detail-panel {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.rf-panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.rf-panel-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #111827;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.rf-panel-company {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1B7768;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 2x2 Meta Grid */
.rf-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #F8FAFC;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}
.rf-meta-item-title {
  font-size: 0.78rem;
  color: #64748B;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.rf-meta-item-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0F172A;
}

/* Actions Row */
.rf-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.rf-btn-apply-main {
  flex: 1;
  background: #1B7768;
  color: #FFFFFF;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(27,119,104,0.25);
}
.rf-btn-apply-main:hover {
  background: #145a4e;
  transform: translateY(-1px);
}
.rf-btn-icon-square {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.rf-btn-icon-square:hover {
  background: #EAF7F5;
  color: #1B7768;
  border-color: #1B7768;
}

.rf-panel-section-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin: 20px 0 10px 0;
}
.rf-panel-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}
.rf-panel-list {
  padding-left: 18px;
  margin-top: 8px;
}
.rf-panel-list li {
  list-style-type: disc;
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 6px;
}

/* ── Responsive Dashboard Controls ─────────────────────────────────────── */
@media (max-width: 1200px) {
  .jobs-dashboard-layout {
    grid-template-columns: 240px 1fr;
  }
  .rf-detail-panel {
    display: none; /* Mobile/Tablet drawer overlay used instead */
  }
  .rf-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jobs-dashboard-layout {
    grid-template-columns: 1fr;
  }
  .rf-filter-sidebar {
    position: static;
  }
  .rf-cards-grid {
    grid-template-columns: 1fr;
  }
}

