
.paul-flora-search-results {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.paul-flora-results-list {
    list-style-type: none;
    padding: 0;
}

.result-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.post-type {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

.search-term {
    display: inline-block;
    margin-left: 10px;
    font-size: 0.85em;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
}

.no-results {
    color: #666;
    font-style: italic;
}

/* User Section Styles */
.specified-users-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.user-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.user-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.user-avatar {
    text-align: center;
    margin-bottom: 10px;
}

.user-avatar img {
    border-radius: 50%;
    max-width: 80px;
    height: auto;
}

.user-name {
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.user-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.user-meta p {
    margin: 5px 0;
}

.user-links {
    text-align: center;
    font-size: 14px;
}

.user-links a {
    color: #0073aa;
    text-decoration: none;
}

.user-links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .users-grid {
        grid-template-columns: 1fr;
    }
}
