/* Add this to your CSS (app/assets/stylesheets/meetup.css or similar) */
.attendees-list {
    display: flex;
    flex-direction: column;
    gap: var(--size-2);
    margin-bottom: var(--size-4);
}

.attendee-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--size-2);
    background: var(--layer-surface-variant);
    border-radius: var(--radius-small);
}

.attendee-info {
    display: flex;
    align-items: center;
    gap: var(--size-2);
}

.attendee-search-results {
    position: absolute;
    z-index: var(--layer-modal);
    background: var(--layer-surface);
    border: 1px solid var(--outline);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-2);
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attendee-result {
    display: block;
    padding: var(--size-2) var(--size-3);
    text-decoration: none;
    color: var(--on-surface);
}

.attendee-result:hover {
    background: var(--layer-surface-variant);
}

.attendee-result small {
    display: block;
    color: var(--on-surface-variant);
    font-size: var(--font-size-body-small);
}

.attendee-search-container {
    margin-top: var(--size-4);
    position: relative;
}