* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f1f3f6;
  color: #333;
}

/* NAVBAR */
.navbar {
  background: #0a66c2;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 26px;
  font-weight: bold;
}

.logo span {
  color: #ffcc00;
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input,
.search-box select {
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  width: 220px;
}

/* STATUS */
.status {
  text-align: center;
  margin: 20px;
  color: #555;
}

/* JOB LIST */
.job-list {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* JOB CARD */
.job-card {
  background: white;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card h3 {
  color: #0a66c2;
  margin-bottom: 8px;
}

.job-card p {
  font-size: 14px;
  margin: 4px 0;
}

.job-actions {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}

.job-actions a,
.job-actions button {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.apply-btn {
  background: #0a66c2;
  color: white;
  text-decoration: none;
}

.save-btn {
  background: #ffcc00;
}
