body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f8;
  color: #333;
}

.header {
  text-align: center;
  background-color: #003366;
  color: white;
  padding: 30px 15px;
}

.header h1 {
  margin: 0;
  font-size: 28px;
}

.header p {
  font-size: 16px;
  margin-top: 5px;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  flex-wrap: wrap;
  background: #fff;
}

.filters input, .filters select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 200px;
}

.job-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.job-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.job-card h3 {
  margin-top: 0;
  color: #003366;
}

.job-card p {
  font-size: 14px;
  margin: 8px 0;
}

.job-meta {
  font-size: 12px;
  color: #777;
}

.btn-apply {
  display: inline-block;
  margin-top: 10px;
  background-color: #003366;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-apply:hover {
  background-color: #0055a5;
}

.footer {
  text-align: center;
  background: #003366;
  color: white;
  padding: 15px;
  font-size: 14px;
}
/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0b2a4a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.topbar .brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  background: #2ecc71;
  color: #0b2a4a;
}

.btn-primary:hover {
  background: #28b866;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

.btn-outline:hover {
  border-color: #fff;
}

/* Küçük ekranlar */
@media (max-width: 640px) {
  .topbar { flex-wrap: wrap; gap: 8px; }
  .nav-actions { width: 100%; justify-content: flex-start; }
}
/* ---- İlan durum rozetleri ---- */
.job-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.job-status{ display:flex; align-items:center; gap:8px; }

.status-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}

.status-green{
  background:#e8f7ee;
  color:#0b6b3a;
  border:1px solid #bfe5cd;
}

.status-red{
  background:#ffe9e9;
  color:#a61111;
  border:1px solid #ffcccc;
}

.status-red .dot{
  width:8px; height:8px; border-radius:50%;
  background:#e11; display:inline-block;
}

/* Başvuru butonu mevcut haliyle uyumlu */
