.live-search-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,.2);
    z-index: 99999;
    display: none;
    max-height: 70vh;
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid #e0e0e0;
}
.live-search-results {
    max-height: 65vh;
    overflow-y: auto;
    padding: 15px;
}
.live-search-loading { text-align: center; padding: 40px; display: none; }
.live-search-loading::after {
    content: "";
    display: inline-block;
    width: 30px; height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1A4EEC;
    border-radius: 50%;
    animation: ls-spin 1s linear infinite;
}
@keyframes ls-spin { to { transform: rotate(360deg); } }

.live-search-section { margin-bottom: 20px; }
.live-search-section:last-child { margin-bottom: 0; }
.live-search-section h4 {
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1A4EEC;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
.live-search-item {
    padding: 10px;
    border-radius: 6px;
    transition: background-color .2s;
    margin-bottom: 8px;
}
.live-search-item:hover { background-color: #f8f9fa; }
.live-search-item a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.live-search-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}
.live-search-content { flex: 1; min-width: 0; }
.live-search-content .title {
    font-weight: 500;
    color: #262626;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.4;
}
.live-search-content .meta,
.live-search-content .excerpt { font-size: 12px; color: #666; line-height: 1.4; }

.no-results-found { text-align: center; padding: 30px 20px; color: #666; }
.view-all-link { text-align: center; padding: 10px; border-top: 1px solid #eee; margin-top: 10px; }
.view-all-button { color: #1A4EEC; text-decoration: none; font-weight: 500; font-size: 14px; }

@media (max-width: 768px) {
    .live-search-container {
        position: fixed;
        top: 60px; left: 10px; right: 10px;
        max-height: 60vh;
    }
    .live-search-thumbnail { width: 40px; height: 40px; }
}