.la-jobs-container {
    display: flex;
    color: #fff; /* Set all text to white */
}

.la-jobs-left {
    width: 40%;
    padding-right: 20px;
}

.la-jobs-right {
    width: 60%;
}

.la-job-application-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.la-job-application-form p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.la-job-application-form label {
    flex: 0 0 150px; /* Adjust the width as needed */
    text-align: left;
    padding-right: 10px; /* Add padding for spacing */
}

.la-job-application-form input,
.la-job-application-form textarea {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.la-job-application-form button {
    background: linear-gradient(to right, #55a8c8, #40b449);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
}

.la-job-application-form button:hover {
    background: #fff;
    color: #000;
}

.la-jobs-left a {
    color: #fff;
}

/* Mobile view: display each column at 100% width and reverse the column order */
@media only screen and (max-width: 768px) {
    .la-jobs-container {
        flex-direction: column-reverse;
    }
    .la-jobs-left,
    .la-jobs-right {
        width: 100%;
        padding: 0 10px; /* optional: adjust padding for mobile */
    }
}


.la-job-button{
  background: linear-gradient(to right, #55a8c8, #40b449);
  padding: 5px 20px;
  border-radius: 50px;
  margin-left: 12px;
}

.la-jobs-left li{
    margin-bottom:20px;
    list-style: none;
    margin-bottom: 5px;
    margin-right: 30px;
}



.la-jobs-left ul li:nth-child(odd) {
    background-color: #272727;
}

.la-jobs-left ul li:nth-child(even) {
    background-color: #404040;
}

  .la-jobs-left ul li:hover{
    background:#151515;
}

.la-jobs-left ul li a.la-job-link {
    display: block;
    width: 100%;
    height: 100%;
    padding:10px;
}


.la-jobs-left li a{
    color:#fff;
}


.la-jobs-left li a:hover{
    text-decoration: none;
    background: linear-gradient(to right, #55a8c8, #40b449);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.la-jobs-left ul{
    padding: 0;
}

.la-job-details-link{
    margin-left:10px;
    font-weight:bold;
    color:#ddd;
}


.la-job-description p{
    text-align: justify !important;
}

.la-job-detail h2{
    padding-bottom:0px;
    margin-bottom:0px;
    font-weight: bold;
}


.apply_now_link {
    font-size: 18px;
    font-weight: bold;;
    text-decoration: none;
    background: linear-gradient(to right, #55a8c8, #40b449);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom:20px;
  }

  .apply_now_h2 a{
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(to right, #55a8c8, #40b449);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  

  .plus_icon_small{
    width: 20px;
    height: 17px;
    position: relative;
    display: block;
    fill: #ddd;
    margin-left: 10px;
    float: right;
    margin-top: 4px;
  }




  /* ===== Popup (Success Modal) ===== */
.la-popup-overlay {
  position: fixed;
  inset: 0;                     /* top/right/bottom/left: 0 */
  background: rgba(0,0,0,.6);
  display: none;                /* will be added to DOM and shown via JS */
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 999999;
  animation: laFadeIn .18s ease-out;
}
@keyframes laFadeIn { from { opacity: 0; } to { opacity: 1; } }

.la-popup {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  color: #111;                  /* text color inside popup */
  border-radius: 12px;
  padding: 28px 28px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  position: relative;
  text-align: center;
  animation: laPop .2s ease-out;
}
@keyframes laPop {
  from { transform: scale(.97); opacity: .85; }
  to   { transform: scale(1);   opacity: 1; }
}

/* green check illustration holder */
.la-popup-graphic {
  margin-bottom: 14px;
}
.la-popup-graphic svg,
.la-popup-graphic img {
  display: inline-block;
  width: 72px;
  height: 72px;
}

/* heading + message */
.la-popup h2 {
  margin: 6px 0 6px;
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}
.la-popup .la-popup-msg {
  margin: 0;
  font-size: 15px;
  color: #4b5563;
}

/* close button (×) */
.la-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #9ca3af;
}
.la-popup-close:hover { color: #111827; }

/* optional: gradient accent bar matching your theme */
.la-popup::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: linear-gradient(to right, #55a8c8, #40b449);
}

/* responsive tweak */
@media (max-width: 480px) {
  .la-popup { padding: 22px 18px 24px; }
  .la-popup h2 { font-size: 20px; }
  .la-popup .la-popup-msg { font-size: 14px; }
}
