body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f3f2ef;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #0a66c2;
  color: white;
}

/* LOGO */
.navbar h2 {
  margin-right: 15px;
}
.navbar input {
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  width: 250px;
  height: 36px;
}

.navbar select {
  padding: 8px 10px;
  border-radius: 20px;
  border: none;
  height: 36px;
}
.navbar button {
  padding: 8px 16px;
  height: 36px;
  border: none;
  border-radius: 20px;
  background: white;
  color: #0a66c2;
  font-weight: bold;
  cursor: pointer;
}

/* HERO */
.hero {
  text-align: center;
  padding: 30px;
  background: white;
}

/* MAIN GRID */
.main {
  display: flex;
  gap: 20px;
  width: 90%;
  margin: 20px auto;
}

/* JOB LIST */
.jobs-section {
  flex: 2;
}

/* SAVED */
.saved-section {
  flex: 1;
  background: white;
  padding: 15px;
  border-radius: 10px;
  height: fit-content;
}

/* CARD */
.job-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
}

.job-title {
  font-weight: bold;
  color: #0a66c2;
}

.company {
  color: #555;
}

.actions button {
  margin-left: 5px;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.apply {
  background: #0a66c2;
  color: white;
}

.save {
  background: #ff4d6d;
  color: white;
}

.navbar input,
.navbar select,
.navbar button {
  display: flex;
  align-items: center;
}
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.actions { display: flex; align-items: center; gap: 8px; }

.job-card {
  transition: 0.2s;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

button:active {
  transform: scale(0.95);
}

.fade-in {
  animation: fade 0.4s ease-in;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}