.header-logo a img {
  height: 50px !important;  /* fixed height */
  max-height: none !important;
  width: auto !important;   /* preserve aspect ratio */
  object-fit: contain;      /* prevent stretching */
}
@media (max-width: 767px) {
  .header-logo a img {
    height: 36px !important;   /* smaller logo size for phones */
    width: auto !important;    /* keep aspect ratio */
    object-fit: contain;       /* avoid distortion */
  }
}
.box-newsletter .text-md-newsletter {
  color: black;
}

.box-newsletter {
  outline-style: solid;
  outline-color: grey;
  outline-width: thin;
}

.box-newsletter .box-form-newsletter
 {
     outline-style: solid;
  outline-color: grey;
  outline-width: thin;
}

.view-type.layout-job[data-layout="grid"] {
  display: none !important;
}


.box-border.mr-10 {
  display: none !important;
}

input.submit-form-filter[name="date_posted"][value="last_hour"][form="jobs-filter-form"] {
  display: none !important;
}

.mobile-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-only {
    display: block !important;
  }
}


.btn-apply-now {
  border-radius: 8px !important;
  font-size: 14px !important;
}

.ps-sidebar .ps-sidebar__content .ps-sidebar__footer img {
    max-width: 166px;
    height: auto;
}


.btn:hover,
.btn:focus,
.btn:active {
  background-color: #FF3A03 !important;  /* ← your new hover color */
  border-color: #FF3A03 !important;      /* match the border */
  color: #fff !important;                /* text stays white */
  transition: all 0.2s ease-in-out;
}

.language-switcher-footer {
  display: none; /* footer language switch*/
}

.content-single {
  margin-right: 30px;   /* adjust as needed */
  margin-left: 30px;    /* adjust as needed */
}

@media (max-width: 767px) {
  #page-home .banner-inner {
    margin-left: -48px;
  }
}

/* ⭐ Move Subscribe button to LEFT (RTL aware) */
.box-form-newsletter .input-group {
    justify-content: flex-Start !important;  /* push children to visual-left */
}

/* Put Subscribe button on the LEFT of the input */
.box-form-newsletter .input-group {
    display: flex !important;
    flex-direction: row-reverse !important; /* reverse order: button, then input */
    align-items: stretch !important;
}


/* 📱 Mobile: input on top, button below */
@media (max-width: 767px) {

    .box-form-newsletter .input-group {
        display: flex !important;
        flex-direction: column-reverse !important;
        /* column-reverse = input first, button second */
        gap: 12px !important;
        width: 100% !important;
    }

    .box-form-newsletter .input-group input,
    .box-form-newsletter .input-group .input-newsletter,
    .box-form-newsletter .input-group button {
        width: 100% !important;
    }
}




@media (max-width: 767px) {
    .job-of-the-day .tab-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 767px) {
    .text-info-bottom {
        margin-right: 30px !important;
    }
}

@media (max-width: 767px) {
    .search-btn-group {
        display: flex !important;
        flex-direction: row-reverse !important; /* swap positions */
        gap: 8px !important; /* optional, cleaner spacing */
    }
}