
  #job-search {
    /* width: 100%;
    max-width: 800px; */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    border-radius: 8px;
    position: relative;
  }
  
  .search-field-container {
    flex: 1;
    position: relative;
    margin-right: 10px;
    display: flex;
    align-items: center;
  }
  
  .search-input {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .search-input::placeholder {
    color: #999;
  }
  
  
  .clear-button {
    display: none;
    font-size: 21px;
    color: #188754;
    margin-left: -30px;
    cursor: pointer;
  }
  
  .search-input:focus + .clear-button,
  .search-input:not(:placeholder-shown) + .clear-button {
    display: inline;
  }
  
  #search-button
  /*#reload-button */
  {
    padding: 12px 20px;
    background-color: #188754;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #search-button {
    margin-left: 10px;
  }
  
  #reload-button {
    font-size: 30px;
  }

   #reload-button
   {
    padding: 8px 16px;
    background-color: #188754;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #reload-button:hover {

    color: #188754;
    background-color: white;
    border-color: #188754;
    border-style: solid;
    border-width: 1px;
    
  }
  
  #search-button:hover
  /*#reload-button:hover */
  {
    background-color: #007bff;
  }
  
  .suggestions {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: white;
    border: 1px solid rgb(14, 13, 13);;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 1000;
    max-height: 150px;
    overflow-y: auto;
    box-sizing: border-box;
    top: calc(100% - 1px);
    left: 0;
  }
  
  .suggestions li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
  }
  
  .suggestions li:last-child {
    border-bottom: none;
  }
  
  .suggestions li:hover {
    background-color: #f0f0f0;
  }
  
  #job-listings {
    width: 100%;
    /* max-width: 800px; */
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  #job-listings h1, h2 {
    margin: 0 0 20px 0;
    text-align: center;
  }
  
  .job {
    padding: 10px 0;
    
  }
  
  .job:last-child {
    border-bottom: none;
  }
  
  .job-title {
    font-size: 1.2em;
    color: #188754;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 5px;
  }
  
  .job-description,
  .job-location,
  .job-details {
    margin: 5px 5px;
    color: #666;
  }
  
  .job-tags {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
  }
  
  
  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    /*padding-top: 60px; */
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /*max-width: 600px; */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /*position: relative; */
  }
  


.close-button {
    color: #969696;
    float: right;
    font-size: 2px;
    font-weight: bold;

  }
  
  .close-button:hover,
  .close-button:focus {
    color: #3b3b3b;
    text-decoration: none;
    cursor: pointer;
  }

  .pagination {
    display: relative ;
    justify-content: center;
    margin: 20px 0;
}

.pagination button {
    padding: 10px 15px;
    margin: 5px 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.pagination button.active {
    background-color: #188754;
    color: #fff;
}

.pagination button:hover:not(.active) {
    background-color: #ddd;
}


/* Styles for application form */
.form-field {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field input[type="file"],
.form-field select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="number"]:focus,
.form-field input[type="file"]:focus,
.form-field select:focus {
    border-color: #188754;
}

#apply-button {
  padding: 10px 20px;
  background-color: #188754;
  color: white;
  font-size: 18px;
  border: 2px solid #188754;
  border-radius: 20px;
  cursor: pointer;
  font-weight: semibold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#apply-button:hover {
  background-color: #ffffff; /* Slightly lighter shade for hover */
  border-color: #188754; /* Darker border on hover */
  color: #188754;
  font-size: 18px;
}

.modal-content {
  padding: 30px;

}




#submit-button {
  padding: 10px 20px;
  background-color: #188754;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

#submit-button:hover {
  background-color: #0056b3;
}
.modal h2 {
    margin-bottom: 20px;
}



.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.error {
  border-color: red;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.error {
  border-color: red;
}

.success-message {
  color: green;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}


.pagination-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  align-items: center;
}

.pagination-item {
  display: flex;
}

.pagination-button {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  background-color: white;
  color: #188754;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.pagination-button:hover {
  background-color: #f1f1f1;
}

.pagination-button.active {
  background-color: #188754;
  color: white;
  border-color: #188754;
}

.pagination-button:disabled {
  background-color: #f1f1f1;
  color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}

.paginationscetion {

    /* width: 100%;
    max-width: 800px; */
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    align-content: center;
  }

  .job-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.job-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.tags {
  display: flex;
  gap: 25px;
  padding: 0px 5px;
}

.tag {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  color: #fff; /* Default text color */
}

.tag.kotlin {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
}

.tag.ios-developer {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.tag.software-engineer {
  background-color: rgba(108, 117, 255, 0.1);
  color: #6c75ff;
}

.no-data {
  text-align: center;
  margin-top: 40px;
  color: #333;
}

.no-data-icon {
  margin-bottom: 20px;
  font-size: 80px;
  color: #ccc;
}

.no-data-text {
  font-size: 1.5em;
  font-weight: bold;
  color: #666;
}

.no-data-suggestion {
  font-size: 1em;
  color: #999;
}

.results-summary {
  font-size: 1em;
  margin-bottom: 20px;
  color: #333;
  text-align: right;
}

.privacy-notice-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  padding: 4rem;
  padding-bottom: 0;
}

/* Desktop: side-by-side layout */
@media (min-width: 992px) {
  .privacy-notice-container {
    flex-direction: row;
    padding: 5rem;
  }

  .privacy-sidebar {
    position: sticky;
    top: 100px;
    max-height: 100%;
    align-self: flex-start;
    width: 20%;
  }

  .privacy-content {
    order: 1;
    width: 80%;
  }
}

/* Mobile-first styles */
.privacy-sidebar {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
}

.privacy-content

.privacy-content h1 {
  font-weight: 800;
  color: var(--accent_color, #188754);
}

.privacy-content h3 {
  margin-top: 1.5rem;
  color: var(--accent_color, #188754);
}

.privacy-sidebar .toc-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.toc {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin-bottom: 0.75rem;
}

.toc a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: var(--accent_color, #188754);
}

[id] {
  scroll-margin-top: 100px;
}

.data-privacy-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  padding: 4rem;
  padding-bottom: 0;
}

/* Desktop: side-by-side layout */
@media (min-width: 992px) {
  .data-privacy-container {
    flex-direction: row;
    padding: 5rem;
  }

  .data-privacy-sidebar {
    position: sticky;
    top: 100px;
    max-height: 100%;
    align-self: flex-start;
    width: 20%;
  }

  .privacy-content {
    order: 1;
    width: 80%;
  }
}

/* Mobile-first styles */
.data-privacy-sidebar {
  background: #f9f9f9;
  justify-content: center;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
}

.data-privacy-pictures {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  background: linear-gradient(to right, #f0f4f8, #e9f5ec);
  padding: 2rem;
  border-radius: 8px;
}

.picture-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  text-align: center;
}

.picture-item img {
  width: auto;
  height: 100%;
  object-fit: contain;
}


.privacy-content

.privacy-content h1 {
  font-weight: 800;
  color: var(--accent_color, #188754);
}

.privacy-content h3 {
  margin-top: 1.5rem;
  color: var(--accent_color, #188754);
}

.privacy-sidebar .toc-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.toc {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin-bottom: 0.75rem;
}

.toc a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: var(--accent_color, #188754);
}

[id] {
  scroll-margin-top: 100px;
}