.search-results-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    display: none;
}

.search-loading {
    padding: 16px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.no-results {
    padding: 16px;
    text-align: center;
    color: #666;
    margin: 0;
}

.search-result {
    padding: 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result:hover,
.search-result.active {
    background-color: #f8f9fa;
}

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

.search-result h3 {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.3;
}

.search-result a {
    text-decoration: none;
    color: #1a73e8;
    font-weight: 500;
}

.search-result a:hover {
    text-decoration: underline;
}

.search-result .excerpt {
    margin: 8px 0;
    font-size: 10px;
    line-height: 1.4;
    color: #5f6368;
}

.search-result .excerpt mark {
    background-color: #fff3cd;
    padding: 1px 2px;
    border-radius: 2px;
    font-weight: 500;
}

.search-result .url {
    color: #5f6368;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-results-container {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        max-height: 50vh;
        border-radius: 0 8px 8px 0;
        margin: 0;
        box-shadow: 0px 5px 4px 4px rgba(0, 0, 0, 0.15);
    }

    .header-site--search.active {
        position: fixed!important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
}
