.job-listing {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.job-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #fff;
}
.job-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.job-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
  color: #333333;
}
.job-location {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
}
.arrow-button {
  background-color: #ffffff;
  color: #333333;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  user-select: none;
}
.arrow-button.rotate {
  transform: rotate(90deg);
}
.job-details {
  display: none;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  color: #333;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
}
.job-card.active .job-details {
  display: block;
}
.title-row h2 {
  font-size: 20px;
}
.title-row p {
  font-size: 16px;
}
.title-row .col-md-4 {
  margin-bottom: 40px;
}
/*# sourceMappingURL=style.css.map */