/* Scoped home search only. Intentionally avoids global theme selectors. */
.tools-search-box {
    position: relative;
    width: 100%;
}

.tools-search-results {
    position: absolute;
    z-index: 2050;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    max-height: 360px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d9dee5;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.tools-search-results[hidden] {
    display: none !important;
}

.tools-search-result {
    display: block;
    width: 100%;
    padding: 11px 14px;
    border: 0;
    border-bottom: 1px solid #eef1f4;
    background: #fff;
    color: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

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

.tools-search-result:hover,
.tools-search-result:focus,
.tools-search-result.is-active {
    background: #f5f8fc;
    text-decoration: none;
    outline: none;
}

.tools-search-empty {
    padding: 12px 14px;
    background: #fff;
    color: #6c757d;
    text-align: center;
}

html[theme-mode="dark"] .tools-search-results,
html[theme-mode="dark"] .tools-search-result,
html[theme-mode="dark"] .tools-search-empty {
    background: #1f2328;
    border-color: #343a40;
    color: #f1f3f5;
}

html[theme-mode="dark"] .tools-search-result:hover,
html[theme-mode="dark"] .tools-search-result:focus,
html[theme-mode="dark"] .tools-search-result.is-active {
    background: #2a3038;
}
