﻿/* Search-related styles */
.search-highlight {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.search-result-item {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .search-result-item:hover {
        border-color: #0d6efd;
        box-shadow: 0 2px 4px rgba(13, 110, 253, 0.15);
    }

.search-result-section {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.search-result-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.search-result-content {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #6c757d;
}

.search-result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #868e96;
}

.search-active-highlight {
    background-color: #fff3cd !important;
    border: 2px solid #ffc107 !important;
    animation: searchPulse 2s ease-in-out;
}

@keyframes searchPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
}
