body {
  background-color: #f8f9fa;
}

.job-container {
  max-width: 1200px;
}

.jobs-details-header-outer {
  background-color: #e1eaf0;
  position: relative;
  margin: 0 -15px;
  padding: 2rem 15px;
}


.company-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.job-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.job-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  font-size: 0.95rem;
}

.job-description p {
  line-height: 1.6;
  color: #333;
}

.other-job-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

.other-job-card:hover {
  border-color: #000;
  background: #f9f9f9;
}

.other-job-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.contact-card {
  background: #001f45;
  color: white;
  padding: 1rem;
  border-radius: 6px;
  position: relative;
  margin-top: -6rem;
}

.about-company {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color : #333;
}

.fav-icon {
  font-size: 30px;
  color: #bbb;
  cursor: pointer;
}

.fav-icon:hover {
 transform: scale(1.2);
  color: #000000;
}

.fav-icon.active {
  color: #FFD700;
  fill: #FFD700;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 767px) {
  .job-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card, .about-company {
    margin-top: 1rem;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-header img {
    margin-bottom: 1rem;
  }
}
