/* Simple Search Results */
.simple-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 100%;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
}

.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e9ecef;
  font-weight: 500;
}

.search-results-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #6c757d;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-results-close:hover {
  color: #495057;
}

.search-results-body {
  padding: 0.5rem 0;
}

.search-result-item {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #f8f9fa;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item a {
  display: block;
  color: #495057;
  text-decoration: none;
}

.search-result-item a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.search-result-item h4 {
  margin: 0 0 0.25rem 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.search-result-item p {
  margin: 0;
  font-size: 0.8rem;
  color: #6c757d;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .simple-search-results {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    max-height: calc(100vh - 60px);
  }
  
  .search-results-header {
    padding: 1rem;
  }
  
  .search-result-item {
    padding: 0.75rem 1rem;
  }
  
  .search-result-item h4 {
    font-size: 1rem;
  }
  
  .search-result-item p {
    font-size: 0.9rem;
  }
}