/* Style for the career section */
/* #career {
    padding: 20px;
  }
  
  .about-wrapper {
    margin: 20px;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  table, th, td {
    border: 1px solid #ccc;
    padding: 10px;
  } */

.job-description-link {
  color: #ff5600;
  text-decoration: underline;
  cursor: pointer;
}

/* Style for the modals */
.modal {
  display: none;
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  width: 50%;
}

.modal-body {
  height: 75vh;
  overflow-y: auto;
}

.modal h2 {
  margin-top: 0;
}

.close-btn {
  margin-top: 10px;
  cursor: pointer;
  background-color: #ff5600;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
}

.close-btn:hover {
  background-color: #ff5600;
}

.apply-btn {
  background-color: #ff5600;
  border: none;
  color: #fff;
  border-radius: 5px;
}

/* Apply button styles */
#applyButton {
  background-color: #ff5600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

/* Apply form styles */
#applyForm {
  display: none;
  max-width: 720px;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  height: fit-content !important;
}

#applyForm input[type="text"],
#applyForm input[type="email"],
#applyForm button[type="submit"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#applyForm button[type="submit"] {
  background-color: #ff5600;
  color: #fff;
  border: none;
  cursor: pointer;
  /* width: 100px; */
}
#closeFormButton {
  background-color: #ff5600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-bottom: 10px;
  margin-left: 250px;
  /* width: 100px; */
}
.about-wrapper p {
  margin-left: 2% !important;
}
.about-wrapper ul li{
  padding-left: 0px !important;
}
.about-wrapper ul{
  padding-left: 56px;
}
.section-padding{
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.career-table {
  margin-left: 5%;
}

.career-container {
  padding-top: 10px;
}

.modal-backdrop-transparent {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: -1000;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(175, 175, 175, 0.483);
  opacity: 0.6;
  width: 100%;
  height: 100%;
  z-index: 1040;
}

