/**
 * Search Results Styling
 */

.search-results-dropdown {
    position: absolute;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    overflow-y: auto;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.search-results-header {
    padding: 12px 16px;
    font-size: 12px;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    font-weight: 500;
}

.search-results-list {
    max-height: 450px;
    overflow-y: auto;
}

.search-result-item {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s ease;
}

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

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

.search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.4;
}

.search-result-content {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 4px;
}

.search-result-url {
    font-size: 11px;
    color: #94a3b8;
    font-family: monospace;
}

.search-result-item mark {
    background-color: #fef08a;
    color: #854d0e;
    padding: 1px 2px;
    border-radius: 2px;
    font-weight: 600;
}

.search-message {
    padding: 20px 16px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .search-results-dropdown {
        background: #1e293b;
        border-color: #334155;
    }

    .search-results-header {
        background: #0f172a;
        border-color: #334155;
        color: #94a3b8;
    }

    .search-result-item {
        border-color: #334155;
        color: #e2e8f0;
    }

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

    .search-result-title {
        color: #f1f5f9;
    }

    .search-result-content {
        color: #cbd5e1;
    }

    .search-result-url {
        color: #64748b;
    }

    .search-result-item mark {
        background-color: #713f12;
        color: #fef08a;
    }

    .search-message {
        color: #cbd5e1;
    }
}

/* Scrollbar styling */
.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (prefers-color-scheme: dark) {
    .search-results-dropdown::-webkit-scrollbar-thumb {
        background: #475569;
    }

    .search-results-dropdown::-webkit-scrollbar-thumb:hover {
        background: #64748b;
    }
}
