.search-container {
    margin-top: 20px;
}
abbr[title] {
    text-decoration: underline dotted #ee72f1; /* Die typische pinke Terminal-Farbe */
    cursor: help; /* Ändert den Mauszeiger zu einem Fragezeichen */
    border-bottom: none;
    font-weight: bold;
    color: #ee72f1
}
#search-input {
    width: 100%;
    padding: 10px;
    background: #1b1c1d; /* Dunkler Terminal-Hintergrund */
    border: 1px solid #ee72f1; /* Typische Terminal-Farbe (z.B. Neon-Pink/Grün) */
    color: #f8f8f2;
    font-family: Fira Code;
    font-size: 1.2rem;
    border-radius: 4px;
}

#search-results {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

#search-results li {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px dashed #44475a;
}

.search-result-title {
    font-weight: bold;
    color: #ee72f1; /* Terminal-Grün für Treffer */
    text-decoration: none;
}

.search-result-meta {
    color: #ee72f1;
    font-size: 0.85rem;
}
