/* Global search results dropdown */

.global-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background-color: #FDFFDA;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(56, 1, 49, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 10000;
    padding: 12px 0;
    box-sizing: border-box;
}

.global-search-results::-webkit-scrollbar {
    width: 6px;
}

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

.global-search-results::-webkit-scrollbar-thumb {
    background: rgba(56, 1, 49, 0.2);
    border-radius: 3px;
}

.global-search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(56, 1, 49, 0.3);
}

.search-result-category {
    padding: 8px 16px;
    font-family: "MD Nichrome", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FD4950;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(253, 73, 80, 0.05);
    margin-top: 4px;
}

.search-result-category:first-child {
    margin-top: 0;
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(56, 1, 49, 0.1);
    transition: background-color 0.2s ease;
}

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

.search-result-item:hover {
    background-color: rgba(56, 1, 49, 0.05);
}

.search-result-item.no-results {
    color: rgba(56, 1, 49, 0.5);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    cursor: default;
}

.search-result-item.no-results:hover {
    background-color: transparent;
}

.search-result-title {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #380131;
    line-height: 1.4;
    margin-bottom: 4px;
}

.search-result-title mark {
    background-color: #FD4950;
    color: #FDFFDA;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.search-result-excerpt {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(56, 1, 49, 0.6);
    line-height: 1.4;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-excerpt mark {
    background-color: rgba(253, 73, 80, 0.2);
    color: #380131;
    padding: 1px 2px;
    border-radius: 2px;
    font-weight: 500;
}
