/* Premium Design System for Product Manager Job Board */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* HSL Color System */
  --hue: 245;
  --primary-color: hsl(var(--hue), 85%, 60%);
  --primary-hover: hsl(var(--hue), 85%, 50%);
  --primary-glow: hsla(var(--hue), 85%, 60%, 0.15);
  --primary-glow-heavy: hsla(var(--hue), 85%, 60%, 0.4);
  
  /* Alert / Tag Colors */
  --color-success: #10b981;
  --color-success-bg: rgba(16, 185, 129, 0.1);
  --color-warning: #f59e0b;
  --color-warning-bg: rgba(245, 158, 11, 0.1);
  --color-danger: #ef4444;
  --color-info: #3b82f6;
  --color-info-bg: rgba(59, 130, 246, 0.1);
  
  /* Font Family */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Dark Mode Default Theme Variables */
  --bg-app: #070a13;
  --bg-gradient: radial-gradient(circle at 50% 0%, #161a32 0%, #070a13 70%);
  --bg-surface: rgba(20, 26, 42, 0.6);
  --bg-surface-hover: rgba(28, 36, 58, 0.8);
  --bg-surface-solid: #111726;
  --border-color: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-inverse: #070a13;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --card-blur: blur(12px);
  --badge-bg-default: rgba(255, 255, 255, 0.05);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode Overrides */
[data-theme="light"] {
  --bg-app: #f6f8fd;
  --bg-gradient: radial-gradient(circle at 50% 0%, #e2e8f7 0%, #f6f8fd 70%);
  --bg-surface: rgba(255, 255, 255, 0.7);
  --bg-surface-hover: rgba(255, 255, 255, 0.95);
  --bg-surface-solid: #ffffff;
  --border-color: rgba(99, 102, 241, 0.1);
  --border-hover: rgba(99, 102, 241, 0.25);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --shadow-sm: 0 2px 8px rgba(99, 102, 241, 0.05);
  --shadow-md: 0 8px 30px rgba(99, 102, 241, 0.1);
  --shadow-lg: 0 12px 40px rgba(99, 102, 241, 0.15);
  --badge-bg-default: rgba(99, 102, 241, 0.06);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-app);
  background-image: var(--bg-gradient);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-hover);
}

/* App Header & Layout Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Top Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-radius: 16px;
  background: var(--bg-surface);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  box-shadow: 0 4px 14px var(--primary-glow-heavy);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.badge-updated {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--primary-glow);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.badge-updated::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.5; box-shadow: 0 0 0 0 var(--primary-color); }
  50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2); }
  100% { transform: scale(0.9); opacity: 0.5; box-shadow: 0 0 0 0 var(--primary-color); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 800px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
}

/* Stats Ribbon */
.stats-ribbon {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.stat-item {
  background: var(--bg-surface);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 12px;
  min-width: 140px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Search and Filters */
.search-filter-card {
  background: var(--bg-surface);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-row {
  display: flex;
  gap: 12px;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
}

.search-input-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  width: 18px;
  height: 18px;
}

.search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
  outline: none;
}

[data-theme="light"] .search-input {
  background: rgba(99, 102, 241, 0.03);
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-glow);
  background: var(--bg-surface-solid);
}

/* Interactive Filter Widgets */
.filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-select {
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast);
  min-width: 160px;
}

[data-theme="light"] .filter-select {
  background: #ffffff;
}

.filter-select:focus, .filter-select:hover {
  border-color: var(--primary-color);
  background: var(--bg-surface-solid);
}

/* Tabs & Toggles */
.toggle-group {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

[data-theme="light"] .toggle-group {
  background: rgba(99, 102, 241, 0.05);
}

.toggle-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.toggle-btn.active {
  background: var(--primary-color);
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  justify-content: center;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px var(--primary-glow-heavy);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--primary-glow-heavy);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: var(--badge-bg-default);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--border-color);
  border-color: var(--border-hover);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  background: var(--badge-bg-default);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  background: var(--border-color);
  border-color: var(--border-hover);
  color: var(--primary-color);
  transform: scale(1.05);
}

.btn-icon.active {
  background: var(--primary-glow);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Dashboard Core Layout */
.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

/* Job Feed & Cards */
.jobs-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feed-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.feed-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--badge-bg-default);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.job-card {
  background: var(--bg-surface);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.job-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  background: var(--bg-surface-hover);
}

.job-card-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.job-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.job-company {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.job-type-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.badge-job {
  background: var(--color-info-bg);
  color: var(--color-info);
}

.badge-internship {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.job-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.job-meta-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin-top: 4px;
}

.meta-icon-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon-text svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* Badges for experience levels */
.experience-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--badge-bg-default);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.exp-intern {
  color: var(--color-success);
  border-color: rgba(16, 185, 129, 0.2);
  background: var(--color-success-bg);
}

.exp-senior {
  color: var(--color-warning);
  border-color: rgba(245, 158, 11, 0.2);
  background: var(--color-warning-bg);
}

.exp-staff, .exp-principal, .exp-director {
  color: #a855f7;
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.1);
}

.job-card-actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

/* Bookmark Active State */
.bookmark-btn.active svg {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}

/* Sidebar Widgets */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widget {
  background: var(--bg-surface);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-title svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trending-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

[data-theme="light"] .trending-item {
  background: rgba(99, 102, 241, 0.02);
}

.trending-item:hover {
  background: var(--border-color);
  border-color: var(--border-hover);
  color: var(--primary-color);
}

.trending-tag {
  font-weight: 500;
}

.trending-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Bookmarked jobs widget list */
.saved-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 350px;
  overflow-y: auto;
}

.saved-job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  gap: 8px;
}

[data-theme="light"] .saved-job-item {
  background: rgba(99, 102, 241, 0.02);
}

.saved-job-details {
  flex: 1;
  min-width: 0;
  cursor: pointer;
}

.saved-job-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.saved-job-company {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.saved-job-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.saved-job-remove:hover {
  color: var(--color-danger);
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.empty-state svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  color: var(--border-hover);
}

/* Job Detail Side Drawer */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 550px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-surface-solid);
  border-left: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  z-index: 101;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
}

.drawer-close:hover {
  background: var(--border-color);
}

.drawer-content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer-job-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
}

.drawer-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.drawer-meta-card {
  background: var(--badge-bg-default);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.drawer-meta-val {
  font-weight: 600;
  font-size: 0.95rem;
}

.drawer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.drawer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
  display: flex;
  gap: 12px;
  align-items: center;
}

.drawer-apply-btn {
  flex: 1;
}

.citation-card {
  background: var(--badge-bg-default);
  border: 1px dashed var(--border-color);
  border-radius: 10px;
  padding: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.citation-card a {
  color: var(--primary-color);
  text-decoration: none;
  word-break: break-all;
}

.citation-card a:hover {
  text-decoration: underline;
}

/* Modal Styling (for Post a Job) */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 550px;
  max-width: 90vw;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(30px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

.modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 70vh;
  overflow-y: auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-input {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

[data-theme="light"] .form-input {
  background: #ffffff;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-surface);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Success Checkmark Anim */
.success-banner {
  background: var(--color-success-bg);
  border: 1px solid var(--color-success);
  border-radius: 10px;
  padding: 14px;
  color: var(--color-success);
  font-size: 0.85rem;
  display: none;
  align-items: center;
  gap: 10px;
}

/* Pagination / Loader */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    order: 2; /* Move sidebar below feed on tablet/mobile */
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .search-row {
    flex-direction: column;
  }
  .search-row .btn {
    width: 100%;
  }
  .filters-row {
    justify-content: space-between;
  }
  .filter-select {
    flex: 1;
    min-width: 140px;
  }
  .job-card {
    flex-direction: column;
  }
  .job-card-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin-top: 4px;
    width: 100%;
  }
  .drawer {
    width: 100%;
    height: 90vh;
    top: 10vh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }
  .drawer.open {
    transform: translateY(0);
  }
}
