/* Estilos básicos para la lista de attendees en el frontend */

.welcu-attendees-list {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.welcu-attendee-item {
    padding: 15px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.welcu-attendee-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.welcu-attendee-item.inactive {
    opacity: 0.6;
}

.welcu-attendee-name {
    font-size: 16px;
    margin-bottom: 5px;
}

.welcu-attendee-name strong {
    color: #333;
}

.welcu-attendee-organization {
    font-size: 14px;
    color: #666;
}

.welcu-no-attendees {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

/* Layout responsive */
@media (min-width: 768px) {
    .welcu-attendees-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .welcu-attendees-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
