
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #f2f2f2;
}

.search-container {
  text-align: center;
  margin-bottom: 25px;
}
.search-container input {
  padding: 8px 13px;
  font-size: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 90%;
  max-width: 350px;
  text-align: center;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.job-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 380px;
  height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.job-details {
  padding: 1px;
  text-align: center;
}
.job-details h1 {
  margin: 10px 0 6px;
  font-size: 18px;
}
.job-details p {
  margin: 4px 0;
  font-size: 15px;
  color: #555;
}

.apply-btn {
  margin: 0 auto 35px;
  padding: 20px 70px;
  background-color: #4b2d1c;
  color: #fff;
  font-size: 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

footer {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #888;
}
