.live-search-container {
    position: relative;
    width: 100%;
}

.live-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.live-search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border-style: solid;
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.live-search-spinner {
    position: absolute;
    right: 15px;
    font-size: 18px;
    color: #888;
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-style: solid;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: 350px;
    overflow-y: auto;
}

.live-search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none !important;
    color: #333 !important;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease-in-out;
}

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

.live-search-result-item:hover {
    background: #f8f9fa;
}

.live-search-result-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.live-search-result-info {
    display: flex;
    flex-direction: column;
}

.live-search-result-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 1.3;
}

.live-search-result-date {
    font-size: 11px;
    color: #888;
}

.live-search-no-results {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}
