/* Search Results Styling */
.search-results {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.search-results a {
    text-decoration: none;
    display: block;
}

.search-results a:last-child {
    border-bottom: none;
}

.search-results a:hover {
    background-color: #f9fafb;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive search dropdown */
@media (max-width: 1024px) {
    .search-results {
        left: 0;
        right: 0;
    }
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.search-results > div:first-child {
    animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
