.search-main-wrapper {
  background-image: url("../images/health-bg-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px 0px;
}

.search-main-wrapper .search-bar {
  display: flex;
  width: 100%;
  border: 2px solid #00b3ff;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.search-main-wrapper .search-bar input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  outline: none;
  font-size: 16px;
}

.search-main-wrapper .search-bar button {
  background-color: #00b3ff;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-main-wrapper .search-bar button:hover {
  background-color: #0099dd;
}

.search-main-wrapper .search-filters {
  margin-bottom: 30px;
  padding: 20px;
  border: 2px solid #00b3ff;
  border-radius: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.search-main-wrapper .search-filters .radio-group {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  align-items: center;
}

.search-main-wrapper .search-filters .radio-group label {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.search-main-wrapper .search-filters .dropdowns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.search-main-wrapper .search-filters select {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #00b3ff;
  border-radius: 10px;
  outline: none;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s ease;
}

.search-main-wrapper .search-filters select:focus {
  border-color: #0099dd;
}

.search-main-wrapper h3 {
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 40px;
  color: rgb(56, 56, 56);
}

.search-main-wrapper .suggestion-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #00b3ff;
  border-top: none;
  z-index: 999;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.search-main-wrapper .suggestion-list li {
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  color: #333;
}

.search-main-wrapper .suggestion-list li:hover {
  background-color: #f0faff;
}

.search-main-wrapper {
  overflow: visible;
  position: relative;
}

.search-main-wrapper input {
  border: 20px;
}

/* Result.js */

.result-card img {
  width: 250px;
  height: auto;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 10px;
}

.result-details {
  flex: 1;
}

h3 {
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 40px;
  color: rgb(56, 56, 56);
}

.result-details div {
  font-size: 16px;
  line-height: 1.6;
}

.result-card .btn-warning {
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 10px;
}

.result-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  width: 80%;
  margin: 0 auto;
}

.result-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.result-card:first-child {
  margin-top: 20px;
}

/* Category.js */
