.navbar-expand-xl .navbar-collapse {
    justify-content: right;
}



.container-content{
  width: 75%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}


.search-heading {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 26px;
}



.custom-select-container {
  position: relative;
  width: 150px;
  font-family: inherit;
}

.custom-select-selected {
  border: 1px solid #E16A00;
  background-color: #f7ebe1;
  padding: 8.5px 14px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select-selected img {
  width: 12px;
}

.custom-select-selected span img{
  width: 18px;
  margin-bottom: 4px;
}
.slect-icon-text{
  display: flex;
  align-items: top;
  gap: 8px;
}

.custom-select-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  border: 1px solid #E16A00;
  background-color: #f7ebe1;
  border-radius: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 1000;
}

.custom-select-options li {
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.custom-select-options li:hover {
  background-color: #ffc18b;
}

.custom-option-selected img {
  width: 12px;
}

.custom-option-selected span img{
  width: 18px;
  margin-bottom: 4px;
}




.input-group span {
  width: 40px;
  /* background: #ffc897; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.input-group span img {
  width: 16px;
}

.search-group {
  position: relative;
  width: 350px;
  border: 1px solid #E16A00;
  background: #f7ebe1;
  border-radius: 4px;
  /* overflow: hidden; */
  /* box-shadow: -4px 4px 10px -4px #7c7c7c; */
}

.search-group input {
  background: #f7ebe1;
  width: 220px;
  padding: 0;
}
.search-group input:focus {
  background: #f7ebe1;
}

.search-group button {
  position: absolute;
  right: 3px;
  top: 0;
  z-index: 10;
  height: 34px !important;
  margin-top: 3px;
  width: 80px !important;
  padding: 0 !important;
  border: none;
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
  border-radius: 4px;
  background-color: #E16A00;
  color: #fff;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.search-group button:hover {
  background-color: #b75600;
  color: #fff;
}








.tag-btn {
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #ccc;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.tag-btn.active {
  background-color: #E16A00;
  color: white;
}

.list-group-item {
  cursor: pointer;
}

.expandable-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: #444;
  margin-top: 5px;
}

.list-group-item.expanded .expandable-description {
  max-height: 200px; /* fallback for animation */
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pagination-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.next-btn{
  background: #E16A00;
  color: #fff;
  padding: 6px 20px;
  border: none;
  border-radius: 4px;
}
.prev-btn{
  background: #E16A00;
  color: #fff;
  padding: 6px 20px;
  border: none;
  border-radius: 4px;
}
.next-btn:hover{
  background: #b75600;
}





.list-group-item {
  padding: 14px;
}









@media (max-width:1000px) {

  .container-content{
  width: 90%;
}

.heading-search-box{
  justify-content: center;
}

.search-heading {
  margin-bottom: 30px;
}


}