/* jobs.css - lightweight styles for jobs page */
body { font-family: "Inter", Arial, sans-serif; background:#f4f6f9; margin:0; color:#222; }

.navbar { background:#fff; border-bottom:1px solid #eee; }
.nav-container { max-width:1100px; margin:0 auto; padding:14px 20px; display:flex; align-items:center; justify-content:space-between; }
.nav-left { display:flex; align-items:center; gap:12px; }
.nav-logo { width:48px; height:48px; border-radius:8px; }
.nav-title { color:#222; text-decoration:none; font-weight:600; }

.nav-links a { margin-left:18px; color:#1652f0; text-decoration:none; font-weight:600; }
.nav-links a.nav-highlight { color:#ff5733; }

/* Main */
.jobs-container { max-width:1100px; margin:28px auto; padding:0 20px 60px; }
.jobs-hero { text-align:center; padding:18px 6px 8px; }
.jobs-hero h1 { margin:8px 0 12px; font-size:30px; color:#111; }
#searchInput { width:70%; max-width:760px; padding:12px 14px; border-radius:8px; border:1px solid #ddd; font-size:15px; box-shadow:0 3px 14px rgba(12,30,60,0.06); }

.time-buttons { margin-top:12px; display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }
.time-btn { background:#1f4ed8; color:#fff; border:none; padding:8px 12px; border-radius:8px; cursor:pointer; font-weight:600; }
.time-btn.active { background:#0b3db0; }

/* Controls */
.jobs-controls { margin:18px 0; display:flex; align-items:center; gap:18px; justify-content:flex-start; flex-wrap:wrap; }
.jobs-controls label { font-size:15px; color:#333; display:flex; align-items:center; gap:8px; }

/* Cards grid */
.jobs-list { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin-top:18px; }
.job-card { background:#fff; padding:18px; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06); border:1px solid #eee; min-height:150px; display:flex; flex-direction:column; justify-content:space-between; }
.job-title { font-weight:700; color:#111; margin-bottom:8px; font-size:18px; text-decoration:none; }
.job-company { color:#1367d1; font-weight:600; margin-bottom:8px; text-decoration:none; display:inline-block; }
.job-meta { color:#555; font-size:14px; margin-bottom:10px; }
.job-tags { display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.job-tag { background:#eef6ff; color:#0b57d0; padding:6px 8px; border-radius:8px; font-weight:600; font-size:13px; }

/* Empty */
.jobs-empty { text-align:center; color:#666; padding:20px; margin-top:12px; }

/* Responsive */
@media (max-width: 980px) {
  .jobs-list { grid-template-columns:repeat(2, 1fr); }
  #searchInput { width:86%; }
}
@media (max-width: 620px) {
  .jobs-list { grid-template-columns:1fr; }
  #searchInput { width:92%; }
  .nav-links a { display:none; }
}
