.help-container {
  position: relative;
  border-radius: 10px;
  height: fit-content;
  text-align: right;
}

.help-item {
  box-sizing: border-box;
  text-align: right;
  padding: 8px;
  font-size: 19px;
  margin-bottom: 10px;
  transition: 0.3s ease;
  box-shadow: rgba(255, 166, 0, 0.3) 0px 4px 12px;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
}

.help-item:hover {
  border-color: #000;
}

.help-item:hover .category-link-icon {
  scale: 1.5;
  color: rgb(119, 17, 17) !important;
}

.help-item.selected {
  border-color: rgba(255, 166, 0);
}
.page-link {
  background-color: rgba(255, 166, 0, 0.5) !important;
  color: #000 !important;
  box-shadow: none !important;
  margin: 1px !important;
}
.page-item.active .page-link {
  border-color: #000 !important;
}
.help-link {
  color: #000;
  text-decoration: none !important;
}

.help-link:hover {
  color: inherit;
}

.help-content {
  margin-top: 20px;
}

.not-found-search {
  margin-right: 400px;
}

.search-btn {
  background-color: rgba(255, 166, 0, 0.584);
  color: #000;
  border: none;
  width: 35px;
  text-align: center;
  padding-top: 7px;
  border-radius: 3px;
  cursor: pointer;
}

.search-form:focus {
  box-shadow: none !important;
  border-color: orange;
}

.search-container {
  box-shadow: rgba(255, 166, 0, 0.3) 0px 4px 12px;
  margin-top: 11px;
}

.category-container {
  padding: 10px 0 10px 0;
  height: fit-content;
}

.category-title {
  font-size: 19px;
  font-weight: bold;
  background-color: rgba(255, 166, 0, 0.3);
  border-radius: 5px;
  padding: 10px;
  text-align: center;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-link-title {
  margin: 0;
  font-size: 17px;
  display: inline;
}

.category-items-title {
  text-align: center;
  padding: 10px;
  font-size: 19px;
  font-weight: bold;
  position: relative;
  top: -10px;
  background-color: rgba(255, 166, 0, 0.3);
  border-radius: 5px;
}

.post-category-title {
  text-align: right;
  padding: 10px;
  font-size: 19px;
  font-weight: bold;
  position: relative;
  top: -10px;
  background-color: rgba(255, 166, 0, 0.3);
  border-radius: 5px;
}

.search-snippet {
  margin-top: 8px;
  font-size: 15px;
  color: #666;
}

.search-snippet mark {
  background-color: yellow;
  color: black;
  padding: 0.2em;
}

.search-mark {
  background-color: yellow;
}

.selected-category {
  border: 2px solid orange;
  border-radius: 5px;
  padding: 5px;
}

.loading {
  position: absolute;
  right: 50%;
  margin-top: 50px;
}


@media (max-width: 1200px) {
  .not-found-search {
    margin-right: 200px;
  }
  .post-category-title {
    margin-top: 20px;
  }
}

@media (max-width: 992px) {
  .not-found-search {
    margin-right: 100px;
  }

  .category-title,
  .category-items-title,
  .post-category-title {
    font-size: 17px;
    padding: 8px;
  }
  .post-category-title {
    margin-top: 20px;
  }

  .help-item {
    font-size: 17px;
    padding: 6px;
  }

  .search-btn {
    width: 30px;
    padding-top: 6px;
  }
}

@media (max-width: 768px) {
  .not-found-search {
    margin-right: 50px;
  }

  .category-title,
  .category-items-title,
  .post-category-title {
    font-size: 15px;
    padding: 6px;
  }
  .post-category-title {
    margin-top: 20px;
  }
  .help-item {
    font-size: 15px;
    padding: 4px;
  }

  .search-btn {
    width: 25px;
    padding-top: 5px;
  }

  .search-container {
    margin-top: 8px;
  }
}

@media (max-width: 576px) {
  .not-found-search {
    margin-right: 20px;
  }

  .category-title,
  .category-items-title,
  .post-category-title {
    font-size: 14px;
    padding: 4px;
  }
  .post-category-title {
    margin-top: 20px;
  }
  .help-item {
    font-size: 14px;
    padding: 2px;
  }

  .search-btn {
    width: 20px;
    padding-top: 4px;
  }

  .search-container {
    margin-top: 5px;
  }

  .help-content {
    margin-top: 10px;
  }

  .loading {
    right: 40%;
    margin-top: 30px;
  }
}
