@media only screen and (max-width: 767px) {
    .rainbow-section-gap {
        padding: 80px 0 !important;
    }
}

@media (max-width: 768px) {
  #show-jobs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 575px) {
  #show-jobs-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

#show-jobs-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-3 {
  width: 100%;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .btn {
  margin: 0 10px; /* Add space between the buttons */
}

.pagination #pageNumber {
  margin: 0 10px;
}

/* For dropdown in filter */
#filter-container {
  position: relative;
}

#filter-container .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  z-index: 1000;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Initially hide the dropdown content */
#filter-container .dropdown-content.hidden {
  display: none;
}

/* Show the dropdown when the 'visible' class is added */
#filter-container .dropdown-content.visible {
  display: block;
}

/* Style for the dropdown options */
#filter-container .dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#filter-container .dropdown-content li:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

#filter-container .dropdown-wrapper {
  position: relative;
  display: inline-block;
}

/* Initially hide the dropdown content */
#filter-container .hidden {
  display: none;
}

/* Show the dropdown when the 'visible' class is added */
#filter-container .visible {
  display: block;
}

/* Style for the input that acts as a button */
#filter-container input[type="text"],
#filter-container input[type="date"] {
  padding: 10px;
  width: 200px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
}

/* Style for the dropdown options */
#filter-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#filter-container li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}

#filter-container li:hover {
  background-color: #f0f0f0;
}
