/* General Styles */
.single-job #breadcrumbs {
  background: #d2faff;
  margin: 0;
  padding: 25px 0;
  border-bottom: 5px solid #0eb2c5;
  color: #3d3d3d;
  font-weight: 400;
}
.single-job #breadcrumbs a {
  color: #0eb2c5;
  font-weight: 400;
}
.snet-job {
  color: #414b56;
  margin-top: 60px;
}
.snet-job .snet-open-modal {
    background: #f7942f;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 7px;
    color: #fff;
    border: 2px solid #f7942f;
    text-transform: uppercase;
    transition: 250ms all ease-in-out;
}
.snet-job .snet-open-modal:hover {
  color: #f7942f;
  background: #fff;
}

/* Header Styles */
.snet-job .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.snet-job .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.snet-job .header-menu a {
  margin-right: 1rem;
  text-decoration: none;
  color: #414b56;
}

.snet-job .header-menu a.active {
  font-weight: bold;
}

/* Search Section */
.snet-job input,
.snet-job select {
  padding: 0.5rem;
  border: 1px solid #d7dfe2;
  border-radius: 0.3rem;
  font-size: 0.9rem;
  color: #575757;
}
.snet-job input[type="submit"] {
  padding: 0.5rem 1rem;
  background: #0eb2c5;
  color: white;
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
}

.snet-job .search-menu {
  margin-bottom: 2rem;
}

.snet-job .search-box {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d7dfe2;
  border-radius: 0.3rem;
}

/* Job Cards */
.snet-job .job-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 5rem;
  overflow-x: hidden;
}
@media (min-width: 650px) {
  .snet-job .job-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .snet-job .job-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1300px) {
  .snet-job .job-cards {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.snet-job .job-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0px 2px 20px #d7dfe2;
  padding: 1rem;
  height: 100%;
  border: 1px solid #0fb2c5;
  transition: 250ms all ease-in-out;
}
.snet-job .job-card:hover {
  background: #edfdff;
  box-shadow: 0px 2px 40px #bfc5c7;
}

.snet-job .overview-wrapper img:not(.phone-icon) {
  width: auto !important;
  height: 50px !important;
  max-width: 75%;
  object-fit: contain;
}

.snet-job .job-card-title {
  font-weight: bold;
}
.snet-job .job-card-title span {
  font-weight: 400;
  color: #606060;
  font-size: 14px;
}
.snet-job .job-card-subtitle {
  color: #616b74;
  display: flex;
  align-items: center;
  margin: 10px 0 0;
}
.snet-job .job-card-subtitle img.phone-icon {
    width: 25px;
    margin-right: 5px;
    background: #c35252;
    padding: 3px;
    border-radius: 6px;
    filter: invert(1);
}

.snet-job .heart {
  margin-left: auto;
  cursor: pointer;
}

.snet-job .job-overview-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.snet-job .time-button,
.snet-job .level-button {
    padding: 3px 10px;
    background: #0fb2c5;
    border-radius: 0.3rem;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.snet-job .job-stat {
  padding: 0.5rem;
  background: #2a9d8f;
  color: white;
  border-radius: 0.3rem;
}

.snet-job .job-day {
  color: #616b74;
}
.snet-job .job-card a.button {
    color: #000000;
    position: relative;
    font-weight: 300;
    font-size: 15px;
}
.snet-job .job-card a.button:hover {
    color: #0fb2c5;
  }
.snet-job .job-card a.button:before {
    position: absolute;
    content: "";
    width: 100%;
    background: #0fb2c5;
    height: 1px;
    bottom: 0;
}

/* Modal Styles */
.snet-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.snet-modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 30px;
  border-radius: 0.5rem;
  box-shadow: 0px 2px 40px #d7dfe2;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.snet-close {
  color: #414b56;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.snet-close:hover,
.snet-close:focus {
  color: #2a9d8f;
}

/* Form Styles */
.snet-form-group {
  margin-bottom: 1.2rem;
}

.snet-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #414b56;
}

.snet-form-group input,
.snet-form-group textarea,
.snet-form-group select {
    padding: 0.5rem;
    border: 1px solid #d7dfe2;
    border-radius: 0.3rem;
    font-size: 0.9rem;
    width: 100%;
    color: #575757;
}

.snet-form-group textarea {
  height: 120px;
}

.snet-submit {
  background: #2a9d8f;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
  font-size: 1rem;
}

.snet-submit:hover {
  background: #1f776e;
}

/* Single Job Page */
.snet-job .single-job {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.snet-job .single-job img {
  max-width: 100px;
  margin-bottom: 1rem;
}

.snet-job .single-job h1 {
  font-size: 2rem;
  margin-bottom: 0;
}
.single-job .job-day {
  margin: 0 0 030px;
  border-bottom: 2px solid #0eb2c5;
  padding-bottom: 4px;
}
.snet-job .single-job p {
  margin-bottom: 0.5rem;
}

.snet-job .content {
  margin: 2rem 0;
}

.snet-job #application-form p {
  margin-bottom: 1rem;
}

.snet-job #application-form input,
.snet-job #application-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #d7dfe2;
  border-radius: 0.3rem;
}

.snet-job #application-form input[type="submit"] {
  background: #2a9d8f;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
}

.snet-job #application-form input[type="submit"]:hover {
  background: #1f776e;
}