/* Einheitliche Suchfunktion Styles für alle Seiten */

/* Suchfeld */
#search {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    background-color: white;
    color: #333;
}

#search:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

#search::placeholder {
    color: #666;
}

/* Container für Suchfeld und Vorschläge */
.navbar > div:last-child {
    position: relative;
}

/* Vorschlagsliste */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 4px 4px;
}

.suggestions a {
    display: block;
    padding: 10px;
    color: #333 !important;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.suggestions a:last-child {
    border-bottom: none;
}

.suggestions a:hover {
    background-color: #f8f9fa;
    color: #003366 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    #search {
        width: 150px;
        font-size: 13px;
    }
    
    .suggestions {
        max-height: 150px;
    }
    
    .suggestions a {
        padding: 8px;
        font-size: 13px;
    }
} 