/* Search bar styling */
.live-search-wrapper {
  position: relative;
  
}

.live-search-input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 50px !important;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s ease;
}

.live-search-input:focus {
  border-color: #08284a;
}

.live-search-results {
  position: absolute;
  background: #fff;
  width: 100%;
  z-index: 9999;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  
}

.live-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease,
  box-shadow 0.3s ease;
  color: inherit;
}

.live-result-item:last-child {
  border-bottom: none;
}

.live-result-item:hover {
  transform: scale(1.02);
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.live-thumbnail {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.live-result-item:hover .live-thumbnail {
  transform: scale(1.1);
}

.live-title {
  flex: 1;
  font-size: 16px;
  color: #333;
  text-align: left;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.live-result-item:hover .live-title {
  transform: scale(1.05);
  color: #08284a;
}

.live-price {
  font-weight: bold;
  color: #000;
  text-align: right;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.live-result-item:hover .live-price {
  transform: scale(1.05);
  color: #555;
}

/* "View All" button styling */

.live-view-all {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: black;
  background: white;
  text-decoration: none;
  border-radius: 5px;
  
  margin-top: 10px;
}


