html,
body {
  height: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1200px !important;
  }
}
.container {
  width: 100%;
}

.job__header--title {
  background-color: #f1f3f5;
}

.title {
  background-color: #f1f3f5;
  /* padding-top: 42px;
    padding-bottom: 2px; */
}
.pt-12 {
  padding-top: 3rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.py-8 {
  padding: 2rem 0px;
}
.mt-12 {
  margin-top: 3rem;
}
.bg-gray-200 {
  background-color: #e5e7eb;
}
.header-h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.25rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.header-h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.header-h5 {
  font-weight: 500;
  line-height: 2rem;
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 6px;
}
.mb-1 {
  margin-bottom: 4px;
}
.body {
  padding-top: 1.25rem;
  padding-bottom: 2.75rem;
}
.pt-8 {
  padding-top: 2rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input[type='text'],
input[type='url'],
input[type='email'],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  height: 120px;
  resize: vertical;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}

button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button[type='reset'] {
  background-color: #e0e0e0;
  color: #333;
}

button[type='reset']:hover {
  background-color: #d5d5d5;
}

button[type='submit'] {
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  color: white;
}

button[type='submit']:hover {
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.job-card {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid #dce0e4;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.job-card h2 {
  margin: 0 0 0.5rem;
  color: #007bff;
}

.job-card p {
  margin: 0.25rem 0;
  color: #333;
  font-size: 0.95rem;
}

.job-card a {
  text-decoration: none;
  display: block;
}

.job-detail-container h2 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #0a58ca;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
}

.job-detail-container p {
  margin: 0.5rem 0;
}

ul.hover-color-black a:hover {
  color: black;
}

.jobs-list > a > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 0.5rem;
}

.jobs-list > a > ul > li {
  margin-bottom: 0;
}
.jobs-list > a > ul > li > span {
  font-weight: bold;
}

.hover-color-black .text-black {
  font-weight: 700;
  color: black;
  line-height: 20px;
  height: 22px;
  border-bottom-style: solid;
  border-bottom-color: #7F3FCA;
  border-bottom: 2px solid #7F3FCA;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  min-width: 19%;
}

@media (max-width: 1200px) and (min-width: 992px) {
    .custom-select-wrapper {
        min-width: 18%;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .custom-select-wrapper {
        min-width: 33%;
    }
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  border-radius: 4px;
  padding-left: 15px;
}

.custom-select-wrapper::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
}

.flex-between-gap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.job-title-block {
  display: inline-block;
  width: 50%;
}

.job-requirements {
  flex: 1;
}

.job-map {
  width: 120px;
  height: 120px;
  border: 0;
  pointer-events: none;
  flex: 0 0 120px;
}

.job-left {
  flex: 0 0 300px;
}

.job-middle {
  flex: 1;
}

@media (max-width: 640px) {
  .job-map {
    display: none;
  }

  .job-date {
    display: none;
  }

  .job-middle {
    display: none;
  }

  .job-left {
    width: 100%;
    max-width: 100%;
  }
}

.title-with-bg {
  background-color: #f1f3f5;
  padding: 0px 15px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 56px;
  height: 334px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.257);
  z-index: auto;
}
.title-with-bg > * {
  color: white;

  nav > ol > li > a {
    color: white;
  }
}

/*
 * Core styles for PriorityNav.js
 * These styles are not optional and should always be included
 *
 * Free to use under the MIT License.
 * http://twitter.com/GijsRoge
 */
.priority-nav {
  white-space: nowrap;
  /*
    * Makes sure the menu's are inline-block so they don't take up
    * the entire width of its parent. This will break the plugin.
    */
}

.priority-nav > ul {
  display: inline-block;
}

.priority-nav > ul > li {
  display: inline-block;
}

.priority-nav-has-dropdown .priority-nav__dropdown-toggle {
  position: relative;
}

.priority-nav__wrapper {
  position: relative;
}

.priority-nav__dropdown {
  position: absolute;
  visibility: hidden;
}

.priority-nav__dropdown.show {
  visibility: visible;
}

.priority-nav__dropdown-toggle {
  visibility: hidden;
  position: absolute;
}

.priority-nav-is-visible {
  visibility: visible;
}

.priority-nav-is-hidden {
  visibility: hidden;
}

.hr {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #0a58ca;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
}

.flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  background-size: cover;
  background-position: center;
  border: 1px solid #ccc;
  border-radius: 2px;
}

/* Add your own flag images */
.flag-gb {
  background-image: url('../images/GB.svg'); /* Or .png */
}
.flag-nl {
  background-image: url('../images/NL.svg');
}

#wrapper {
  margin-top: 57px;
}

.container-mobile {
  padding-right: 1rem;
  padding-left: 0.5rem;
}
@media (min-width: 576px) {
  .container-mobile {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
ul.hover-color-black a:hover {
  color: black;
}
.hidden-mobile {
  display: none;
}
@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}
.show-only-mobile {
  display: block;
}
@media (min-width: 576px) {
  .show-only-mobile {
    display: none;
  }
}
.text-in-menu-mobile {
  font-size: 15px;
  gap: 0.25rem;
  align-items: center;
  display: flex;
  margin: 1px 0;
}
.bottom-full {
  bottom: 100%;
}
