﻿body 
{
  /* Smart Search Styles */
.search-container {
  position: relative;
  margin-left: 20px;
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

#smart-search {
  padding: 8px 15px 8px 35px;
  border-radius: 50px;
  border: 1px solid #dee2e6;
  width: 200px;
  transition: width 0.3s;
}

#smart-search:focus {
  width: 300px;
  outline: none;
  border-color: #1e4356;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.search-result-item:hover {
  background: #f8f9fa;
}

.search-result-item i {
  margin-right: 10px;
  color: #1e4356;
}

.search-result-category {
  background: #f1f5f9;
  padding: 5px 15px;
  font-weight: bold;
  color: #1e4356;
}  
}
