/* assets/css/style.css */
.miembro-card {
    transition: all 0.3s ease;
}

.miembro-card.ingresado {
    opacity: 0.6;
    background-color: #dcfce7;
}

.miembro-card.ingresado input[type="checkbox"] {
    accent-color: #16a34a;
}

.notificacion {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notificacion.success {
    background: #16a34a;
}

.notificacion.error {
    background: #dc2626;
}

.notificacion.warning {
    background: #d97706;
}