/* CSS styles for compleet-section */

.compleet-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
  /* margin: 20px 0; */
}

.compleet-section .search-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.compleet-section img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}

.compleet-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.compleet-section .inspiration-text {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #555;
}

.compleet-section .inspiration-sort {
  display: inline-block;
  margin: 10px 15px;
  vertical-align: top;
}

.compleet-section .inspiration-sort label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.compleet-section .sort-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  font-size: 14px;
  min-width: 150px;
}

.compleet-section .sort-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.compleet-section .search-button-container {
  text-align: center;
  margin: 20px 0;
}

.compleet-section .search-button {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.compleet-section .search-button:hover {
  background-color: #c82333;
}

.compleet-section .search-button.bgred {
  background-color: #dc3545;
}

.compleet-section .inspiration-results {
  margin-top: 30px;
  min-height: 100px;
}

.compleet-section .noshow {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .compleet-section {
    padding: 20px 10px;
  }

  .compleet-section .search-title {
    font-size: 1.5rem;
  }

  .compleet-section .inspiration-sort {
    display: block;
    margin: 10px 0;
    width: 100%;
  }

  .compleet-section .sort-select {
    width: 100%;
    min-width: auto;
  }
}
/* Update scroll-container2 to properly enable horizontal scrolling */
div.scroll-container2 {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 5px;
  gap: 10px;
  /* Adds spacing between images */
  width: 100%;
  scrollbar-width: thin;
  /* For Firefox */
  scrollbar-color: #33a1c9 #f0f0f0;
  /* For Firefox */
}

div.scroll-container2::-webkit-scrollbar {
  height: 8px;
  /* Height of horizontal scrollbar */
}

div.scroll-container2::-webkit-scrollbar-thumb {
  background-color: #33a1c9;
  /* Scrollbar color */
  border-radius: 4px;
}

div.scroll-container2::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  /* Scrollbar track color */
}

div.scroll-container2 img {
  flex: 0 0 auto;
  /* Prevents the images from shrinking */
  padding: 5px;
}

.imgscroll {
  width: 33%;
  height: auto;
}

@media (max-width: 768px) {
  .imgscroll {
    width: 50%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .imgscroll {
    width: 100%;
    height: auto;
  }
}
   .w3-btn, .w3-button {
    display: inline-block;
    margin: 4px;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: auto;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    background-color: rgb(232, 90, 42) !important;
    color: white;
    cursor: pointer;
}