﻿.search-results-wrapper {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--shadow-warm);
    border-radius: 10px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    width: 100%;
    margin-top: 8px; 
}

    .search-results-wrapper.open {
        max-height: 500px;
        opacity: 1;
    }

.search-results {
    max-height: 500px;
    overflow-y: auto;
    padding: 10px;
}

.search-result-card {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .search-result-card b {
        color: var(--text);
        font-weight: 900;
    }

.search-result-card mjx-container[jax="CHTML"] {  
    display: contents !important;
}
    .search-result-card:last-child {
        border-bottom: none;
    }

.search-result-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--warm);
}

.search-result-description {
    font-size: 13px;
    color: var(--muted);
}

.search-result-snippet {
    font-size: 13px;
    color: #888;
}
