.wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.heading_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: white;
  border-bottom: 1px solid #d8e1ec;
}

@media (max-width: 480px) {
  .heading_container {
    display: grid;
  }
}

.heading_container select {
  background-color: transparent;
  border: none;
  outline: none;
  width: max-content;
  color: #4b587c;
}

.heading_container select option {
  padding: 1rem;
}

.heading {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #21293c;
}

.product_list {
  margin: 0;
  padding: 2rem 0 0 0;
}

.exampleSearchLink {
  color: var(--orange);
  font-weight: 600;
}

/* AI Tools Directory Styles */
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #21293c;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* File uploader styles */
input[type="file"] {
  padding: 0.75rem;
  border: 2px dashed #e5e7eb;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

input[type="file"]:hover {
  border-color: var(--orange);
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}