/* Styles pour les résultats de recherche */

.search-results-container {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

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

.search-item:hover {
    background-color: #f5f8ff;
}

.search-result-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 12px;
}

.search-item-content {
    flex: 1;
}

.search-item-name {
    font-weight: bold;
    margin-bottom: 3px;
}

.search-item-details {
    font-size: 0.85em;
    color: #666;
}

.search-item-school {
    color: #1a3a5f;
}

.search-item-formation {
    color: #4b5563;
}
