/* magnustools Vue component styles
   Originally inlined in each .html component file; collected here for convenience.
   Include this file once in your page <head>. */

/* ── autodesc ─────────────────────────────────────────────────── */
.autodesc_result_text {}
.autodesc_manual_text { color: #AAA; }

/* ── typeahead-search ─────────────────────────────────────────── */
ul.typeahead_search_results {
    position: absolute;
    width: 25rem;
    box-shadow: 5px 5px 5px #AAA;
    z-index: 5;
}
input.typeahead_search_results_query {
    display: inline;
    width: auto;
}
li.typeahead_search_results_row {
    cursor: pointer;
    line-height: 1rem;
    display: flex;
    flex-direction: row;
}
li.typeahead_search_results_row:hover,
li.typeahead_search_results_row_marked {
    background-color: #7BA7E1;
}
div.typeahead_search_results_query_overlay {
    position: absolute;
    width: 30rem;
    text-align: right;
    z-index: 5;
    margin-top: 1rem;
    padding-right: 0.2rem;
    color: #AAA;
    font-family: Courier;
    pointer-events: none;
}

/* ── value-validator ──────────────────────────────────────────── */
input.value_validator {
    display: inline;
    width: 20rem;
}
input.language_validator {
    display: inline;
    width: 3rem;
}

/* ── wikidatamap ──────────────────────────────────────────────── */
span.wikidatamap_note {
    border-right: 1px solid #DDD;
    margin-right: 0.2rem;
}
span.wikidatamap_note:last-of-type {
    border-right: none;
}
